示例#1
0
        /// <summary>
        /// TouchPad button press action.
        /// Creates TouchPadTab object.
        /// Connects send handler.
        /// Shows module window.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void pressButton4_Click(object sender, EventArgs e)
        {
            TouchPadTab t = new TouchPadTab();

            t.send = new sendFunction(send);
            showModuleWindow(t);
        }
示例#2
0
 /// <summary>
 /// TouchPad button press action.
 /// Creates TouchPadTab object.
 /// Connects send handler.
 /// Shows module window.        
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void pressButton4_Click(object sender, EventArgs e)
 {
     TouchPadTab t = new TouchPadTab();
     t.send = new sendFunction(send);
     showModuleWindow(t);
 }