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.
Window1つの親(別の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 });