コード例 #1
0
 private void OnUiInfo(object sender, EventArgs e)
 {
     if (this.selectedSerial != null)
     {
         DeviceInfo_USB.ShowBox(this, this.selectedSerial);
     }
 }
コード例 #2
0
        public static void ShowBox(Window parent, SerialDeviceInfo info)
        {
            DeviceInfo_USB win = new DeviceInfo_USB(parent, info);

            win.ShowDialog();
        }