コード例 #1
0
        /// <summary>
        /// Utils button press action.
        /// Creates UtilsTab object.
        /// Connects send handler.
        /// Shows module window.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void pressButton3_Click(object sender, EventArgs e)
        {
            UtilsTab t = new UtilsTab();

            t.send = new sendFunction(send);
            showModuleWindow(t);
        }
コード例 #2
0
ファイル: MainWindow.cs プロジェクト: nipzirk/Sensor-Remote
 /// <summary>
 /// Utils button press action.
 /// Creates UtilsTab object.
 /// Connects send handler.
 /// Shows module window.        
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void pressButton3_Click(object sender, EventArgs e)
 {
     UtilsTab t = new UtilsTab();
     t.send = new sendFunction(send);
     showModuleWindow(t);
 }