我在c#中创建一个UserControls生成器。它看起来几乎是这样的:
UserControl control = new UserControl();
Grid contentGrid = new Grid();
control.Content = contentGrid;
//create Buttons, Labels, Bindings etc.
return control;
现在我的问题是我是否可以在运行时获得创建的UserControl的XAML,如果可能的话,我该如何做到这一点。
例如,我想从上面的代码中检索如下:
<UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid>
....
</Grid>
</UserControl>
您可以使用XamlWriter.Save()
,但它是有限的。