Upgrade to Pro — share decks privately, control downloads, hide ads and more …

WPF勉強会 第5回 テンプレート/WPFStudy5

WPF勉強会 第5回 テンプレート/WPFStudy5

WPF勉強会 第5回 テンプレート

説明後に実演するライブコーディングのコードはこちら。
https://github.com/hachiilcane/WpfStudy

Avatar for hachiilcane

hachiilcane

March 01, 2022
Tweet

More Decks by hachiilcane

Other Decks in Programming

Transcript

  1. ͜Ε͸ςϯϓϨʔτඞ ཁʁ̎ ϘλϯͷதʹϘλϯ͕͋Δ ͍Γ·ͤΜʂ <Button> <Grid> <TextBlock TextWrapping="Wrap" Text="Button" FontSize="36"

    HorizontalAlignment="Center"/> <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"> <Button Content="Button" Margin="3,12,3,0" VerticalAlignment="Center"/> <Button Content="Button" Margin="3,12,3,0" VerticalAlignment="Center"/> </StackPanel> </Grid> </Button>
  2. ͜Ε͸ςϯϓϨʔτඞ ཁʁ̏ ListBoxͷߦΛΧελϚΠζ͍ͨ͠ ͍Γ·ͤΜʂ <ListBox Grid.Column="1"> <ListBox.ItemTemplate> <DataTemplate DataType="System:String"> <Grid>

    <Border BorderThickness="8,2,2,2" BorderBrush="Red"> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding}"/> <ProgressBar Width="60" Value="45"/> </StackPanel> </Border> </Grid> </DataTemplate> </ListBox.ItemTemplate> <System:String>͢Ϳͨ</System:String> <System:String>ͪΌʔ͸Μ</System:String> <System:String>͸ͬΆ͏͍͞</System:String> </ListBox>