listbox binding

This commit is contained in:
2023-06-30 18:03:14 +09:00
parent 7449f0337a
commit 272e95a6b7
10 changed files with 230 additions and 4 deletions

View File

@@ -38,10 +38,12 @@
<Border Grid.Column="0" Grid.Row="2" BorderBrush="DarkGray" BorderThickness="1" Background="LightGray">
<Label Content="Sex(_S):" HorizontalAlignment="Center" VerticalAlignment="Center" Target="{Binding ElementName=cboSex}"/>
</Border>
<ComboBox Grid.Column="1" Grid.Row="2" x:Name="cboSex" Width="150" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center" SelectedIndex="0">
<ComboBoxItem Content="Male"/>
<ComboBoxItem Content="Female"/>
</ComboBox>
<Border Grid.Column="1" Grid.Row="2" BorderBrush="DarkGray" BorderThickness="1">
<ComboBox Grid.Column="1" Grid.Row="2" x:Name="cboSex" Width="150" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center" SelectedIndex="0">
<ComboBoxItem Content="Male"/>
<ComboBoxItem Content="Female"/>
</ComboBox>
</Border>
<Border Grid.Column="0" Grid.Row="3" BorderBrush="DarkGray" BorderThickness="1" Background="LightGray">
<Label Content="Note(_N):" HorizontalAlignment="Center" VerticalAlignment="Center" Target="{Binding ElementName=txtNote}"/>