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.
我正在尝试将一个孩子包含在一个中的Window父母(另一个Window)中Page,当我在 XAML 中使用时,我知道我可以使用这个:
Window
Page
<views:ParentView Width="550" Height="250" />
但是,是否可以从以下位置更改 XAML 代码:
<views:ParentView Width="550" Height="250"/>
进代码后面?
在 XAML 中,您可以使用StackPanel:
StackPanel
<StackPanel x:Name="myStackPanel" />
并在以下代码后面的代码中向主视图添加新控件:
myStackPanel.Children.Add(new ParentView() { Width = 550, Height = 250 });