我正在开发一个 WPF 应用程序,我需要在其中动态生成 2 个组框,其中包含一个单选按钮、文本框和一个组合框。好吧,我遇到了一个棘手的情况,即两个组框中的值需要不同。
我有两个 xaml 文件PCM2PDMView.xaml
和PCM2PDMWidgetView.xaml
& viewmodel 类。
PCM2PDMView.xaml:
<UserControl.Resources>
<DataTemplate x:Key="PCM2PDMDataTemplate">
<WrapPanel>
<TextBlock Text="{Binding Description}" Margin="5,5,0,0"/>
<local:PCM2PDMWidgetView Margin="5,10,5,5"/>
</WrapPanel>
</DataTemplate>
</UserControl.Resources>
<Grid Style="{DynamicResource styleBackground}" >
<ItemsControl ItemTemplate="{StaticResource PCM2PDMDataTemplate}" ItemsSource="{Binding PCM2PDMWidgets}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
</Grid>
PCM2PDMWidgetView.xaml:
<Grid>
<GroupBox Height="Auto" HorizontalAlignment="Stretch" Margin="5" Name="groupBox1" VerticalAlignment="Stretch" Width="Auto">
<Grid>
<Grid Grid.Row="1">
<RadioButton Grid.Column="1" Content="Port B" Command="{Binding PortCommand}" IsChecked="{Binding PortCheck}" Height="20" Width="60" HorizontalAlignment="Center" Margin="0,0,0,0" Name="PCM2PDMEnableRadioBtn" VerticalAlignment="Center" />
</Grid>
<Grid Grid.Row="2">
<ComboBox Grid.Column="1" Height="20" ItemsSource="{Binding PortModeList}" SelectedItem="{Binding SelectedPortModeList, Mode=OneWayToSource}" SelectedIndex="0" HorizontalAlignment="Center" Margin="0,0,0,0" Name="PortModeCombo" VerticalAlignment="Center" Width="110" />
</Grid>
<Grid Grid.Row="3">
<ToggleButton Grid.Column="0" Content="Soft Reset" Height="25" Width="105" HorizontalAlignment="Center" Margin="0,0,0,0" Name="SoftResetRadioBtn" VerticalAlignment="Center" />
<ToggleButton Grid.Column="1" Command="{Binding PCM2PDMEnableCommand}" IsChecked="{Binding PCM2PDMCheck}" Content="PCM2PDM Enable" Height="25" Width="110" HorizontalAlignment="Center" Margin="0,0,0,0" Name="PCM2PDMRadioBtn" VerticalAlignment="Center" />
</Grid>
<Grid Grid.Row="4">
<TextBox Height="25" IsReadOnly="True" Text="{Binding MemAddPoint}" Margin="0" Name="SetRead" />
</Grid>
</Grid>
</GroupBox>
</Grid>
PCM2PDmViewModel.cs:
public ObservableCollection<PCM2PDMWidgetViewModel> PCM2PDMWidgets { get; set; }
public PCM2PDMViewModel()
{
PCM2PDMWidgets = new ObservableCollection<PCM2PDMWidgetViewModel>();
PCM2PDMWidgets.Add(new PCM2PDMWidgetViewModel { Description = "PCM2PDM 0", ID = 0 });
PCM2PDMWidgets.Add(new PCM2PDMWidgetViewModel { Description = "PCM2PDM 1", ID = 1 });
}
这会生成 2 个组合框,其中包含相关的 UI 控件。
PCM2PDMWidgetViewModel.cs:
public ObservableCollection<string> _PortModeList = _PortModeList = new ObservableCollection<string>();
_PortModeList.Add("Normal"); //Adding in Constructor
_PortModeList.Add("Mode 1 - PCM + PDM");
_PortModeList.Add("Mode 2 - PDM only");
public ObservableCollection<string> PortModeList
{
get { return _PortModeList; }
set
{
_PortModeList = value;
OnPropertyChanged("PortModeList");
}
}
private string _selectedPortModeList;
public string SelectedPortModeList
{
get { return _selectedPortModeList; }
set
{
_selectedPortModeList = value;
OnPropertyChanged("SelectedPortModeList");
}
}
public string Description {get; set;}
public int ID {get; set;}
public string MemAddPoint {get; set;}
要求:
现在,如果您注意到
Grid.Row=1
您会发现一个名为 的单选按钮Port B
,那么我的要求是Port B
在我的第一个 groupbox 和Port C
我的第二个 groupbox 中。功能(按钮单击方法)对两者都是通用的,但名称必须不同。我们怎样才能做到这一点?在我的组合框中,我添加了 3 个项目。在这里,我想在第一个 groupbox 中的组合框中添加和add ,
Normal
并在第二个 groupbox 中的组合框中添加。怎样才能做到这一点?:)Mode 1 - PCM + PDM
Normal
Mode 1 - PCM + PDM
Mode 2 - PDM Only
如果你注意到
Grid.Row=3
你会发现PCM2PDMEnable
切换按钮。我想让这个切换按钮在我的第二个 groupbox 中而不是在我的第一个 groupbox 中可见。我怎样才能做到这一点?输入的文本框
Grid.Row=4
有一个值为(例如0x5)的文本框。我需要将此文本框的文本设置为 Groupbox 1 中的 0x5 和 Groupbox2 的 Textbox 中的 0x7。怎么做?
请帮忙 :)