1
私はComboBox上にあるTextBlockを持っており、クリックするとコンボボックスのポップアップ(ドロップダウン)が必要になります。上にあるTextBlockをクリックするためのWPFコンボボックスの作成方法
<Grid>
<ComboBox Name="tstcmb" Height="27" HorizontalAlignment="Left" Margin="29,92,0,0" VerticalAlignment="Top" Width="131" SelectedIndex="1" >
<ComboBoxItem>a</ComboBoxItem>
<ComboBoxItem>aaaa</ComboBoxItem>
</ComboBox>
<TextBlock Text="skdkdkdk" Background="Green" Height="16" HorizontalAlignment="Left" Margin="29,92,0,0" VerticalAlignment="Top" Width="131" />
</Grid>
可能でしょうか?
魔法に似ています。ありがとう。 – IvanH