WPF を学ぼうとしているのですが、気が狂ってしまいます。だから私はここに投稿した写真のようなことをしようとしています。しかし、コンボボックス、テキスト、チェックボックスを並べて表示することはできません...どうすればこれを行うことができますか?
また、ユーザーがボタンを押した場合にリストボックスに「テキスト」を追加する方法を見つけましたが、テキストボックスからテキストを追加するときに必要です。コンボボックス、チェックボックス、およびボタンが追加されます。しかし、私はそれを行う方法がわかりません。
私はそれらのもののためのクラスを作らなければならないと仮定しています。しかし、XAML でコーディングしている場合、どうすればよいでしょうか。このWPFは私にとって混乱を招きます。
<ListBox HorizontalAlignment="Left" Height="195" Margin="25,345,0,0" VerticalAlignment="Top" Width="650">
<ListBoxItem>
<StackPanel Orientation="Horizontal" Height="45"> <!--Stacks Items Horizontally-->
<ComboBox Width="100" Height="30">
<ComboBoxItem IsSelected="True">DirecTV</ComboBoxItem>
<ComboBoxItem>Hyundai</ComboBoxItem>
<ComboBoxItem>None</ComboBoxItem>
</ComboBox>
<TextBox Width="445" Height="30" Text="Follow RedZone on Twitter" VerticalContentAlignment="Center"/>
<CheckBox IsChecked="True" VerticalAlignment="Center">
<CheckBox.LayoutTransform>
<ScaleTransform ScaleX="1.5" ScaleY="1.5"></ScaleTransform>
</CheckBox.LayoutTransform>
</CheckBox>
<Button Content="Delete" Height="Auto" Width="Auto" HorizontalAlignment="Right" VerticalAlignment="Top" VerticalContentAlignment="Top"/>
</StackPanel>
</ListBoxItem>
</ListBox>