public MainWindow()
    {
        InitializeComponent();
        your_control control = new your_control();

        control.delete += on_delete;
    }
예제 #2
0
    public MainWindow()
    {
        InitializeComponent();
        your_control control = new your_control();

        control.bu.Click += on_bu_click;
    }
 public void on_delete(your_control sender)
 {
     // your stuff
 }