私は C++ 開発者で、最近 wpf に移行しました。ラジオボタンのクリックに基づいてラベルを動的に生成する必要があるというトリッキーな状況に遭遇したようです。ここでは、最初に 4 つのラジオ ボタンを生成する方法を示します。
XAML:
<Grid Grid.Row="0">
<ItemsControl ItemsSource="{Binding Children}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical"
IsItemsHost="True" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<RadioButton Content="{Binding RadioBase}" Margin="0,10,0,0" IsChecked="{Binding BaseCheck}" Height="15" Width="80" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
<Grid Grid.Row="1">
<Label Content="{Binding name}" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>
ビューモデル:
private bool sBaseCheck;
public bool BaseCheck
{
get { return this.sBaseCheck; }
set
{
this.sBaseCheck = value;
this.OnPropertyChanged("BaseCheck");
}
}
private int _ID;
public int ID
{
get
{
return _ID;
}
set
{
_ID = value;
OnPropertyChanged("ID");
}
}
private string _NAme;
public string name
{
get
{
return _NAme;
}
set
{
_NAme= value;
OnPropertyChanged("name");
}
}
private string _RadioBase;
public string RadioBase
{
get
{
return _RadioBase;
}
set
{
_RadioBase = value;
OnPropertyChanged("RadioBase");
}
}
別のViewModel クラス:
public ObservableCollection<FPGAViewModel> Children { get; set; }
public FPGARadioWidgetViewModel()
{
Children = new ObservableCollection<FPGAViewModel>();
Children.Add(new FPGAViewModel() { RadioBase = "Base 0x0", ID = 0 });
Children.Add(new FPGAViewModel() { RadioBase = "Base 0x40", ID = 1 });
Children.Add(new FPGAViewModel() { RadioBase = "Base 0x80", ID = 2 });
Children.Add(new FPGAViewModel() { RadioBase = "Base 0xc0", ID = 3 });
}
これにより、上記のコンテンツを含む 4 つのラジオボタンが表示されます。ここで、ラジオボタンのクリックごとに 8 つのラベルを生成したいと考えています。次のように、C++ アプリでこれを行いました。
for(i = 0; i < 0x40 / 8; i++)
{
reg = (i * 8);
m_registerLabel[i] = new Label(String::empty, String("Reg 0x") + String::toHexString(reg));
addAndMakeVisible(m_registerLabel[i]);
}
気づいたらReg 0x0, Reg 0x8, Reg 0x10, Reg 0x18
、reg が 16 進文字列に変換されているため、値が etc の 8 つのラベルが作成されます。Base 0x0
スタートアップをクリックすると、このようなものを生成したいと思います。
アプリでこれを達成するにはどうすればよいですか???