Example #1
0
 /// <summary>
 /// Creates Widget
 /// </summary>
 /// <param name="aDataSource">
 /// DataSource connected to this widget <see cref="System.Object"/>
 /// </param>
 /// <param name="aMappings">
 /// Mappings with this widget <see cref="System.String"/>
 /// </param>
 public DataRadioGroup(object aDataSource, string aMappings)
     : base()
 {
     this.Build();
     RadioGroup.Hide();
     box.Remove(RadioGroup);
     RadioGroup = null;
     adaptor    = new GtkControlAdaptor(this, true, aDataSource, aMappings);
 }