예제 #1
0
        /// <summary>
        /// This method handles the cut context menu item being clicked.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void Cut_Click(object sender, EventArgs e)
        {
            ActionCut cut = new ActionCut(_app);

            cut.Run();
            Close();
        }
예제 #2
0
        private void menuCut_Click(object sender, EventArgs e)
        {
            ActionCut cut = new ActionCut(app);

            cut.Run();
        }