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.
我想从后面的代码中设置 WPF 数据网格的样式,因为数据网格是在后面的代码中创建的。
我的应用程序中有一个包含所有样式的资源字典。
在 XAML 中,我会将样式应用于数据网格,如下所示:
Style="{StaticResource DataGridStyle}"
如何为在后面的代码中创建的数据网格实现这一点,如下所示:
DataGrid dg = new DataGrid();
提前致谢。
dg.Style = this.Resources["DataGridStyle"] as Style;