试图学习 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>