Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道这是否可能(在silverlight,c#中),例如通过单击一个按钮,会出现一个小的可编辑数据网格,如果我再次单击该按钮,则会出现另一个数据网格。
当然可以。只需在 XAML 中创建一个空的 StackPanel,创建一个按钮并捕获按钮单击事件,在 C# 中创建一个 DataGrid,然后将该 DataGrid 添加到上述面板的 .Children 集合中。