public MainWindow()
 {
     InitializeComponent();
     BT_Controll = new Bluetooth_Init();
     timer.Tick += new EventHandler(timerCounter_Tick);
     timer.Interval = new TimeSpan(0, 0, 1 / 10);
     timer.Start();
     
 }
 public Bluetooth_Control()
 {
     InitializeComponent();
     Bluetooh_Control_Init = new Bluetooth_Init();
     this.Loaded += BluetoothSeting_Loaded;
 }