Beispiel #1
0
        public DistributionForm(
            IDistributionFormEventBinder binder) : base()
        {
            InitializeComponent();

            PopulateComboBox <PrDistribution>(DistributionsComboBox);

            _binder = binder;
            _binder.OnElementExpose(this);
        }
 public DistributionFormWrapper(
     IDistributionFormEventBinder binder)
 {
     _form = new DistributionForm(binder);
 }