Files
DP44/Common/DTS.CommonCore/.svn/pristine/56/5652167a0d7bfdae0ce854eeec467f1caa15c06b.svn-base

21 lines
473 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.ComponentModel;
namespace DTS.Common.RibbonControl
{
public class RadioButtonData : ControlData
{
public bool IsChecked
{
get => _isChecked;
set
{
if (_isChecked == value) return;
_isChecked = value;
OnPropertyChanged(new PropertyChangedEventArgs("IsChecked"));
}
}
private bool _isChecked;
}
}