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.
私は XAML/WPF プログラミングにかなり慣れていません。特定のコード行を XAML から C# に変換する方法を教えてください。
XAML:
<GridView> <ItemsPanelTemplate> <WrapGrid Orientation="Horizontal"/> </ItemsPanelTemplate> </GridView>
C#でこれを行うにはどうすればよいですか?
コントロールに名前を付けると、次のようになります。
<GridView> <ItemsPanelTemplate> <WrapGrid Name="MyWrapGrid" Orientation="Horizontal"/> </ItemsPanelTemplate> </GridView>
これをコード ビハインド (C#) で実行して、向きを変更できます。
MyWrapGrid.Orientation = Orientation.Horizontal;