Beispiel #1
0
        public MainWindow()
        {
            #region initialize
            // Khởi tạo các tham số ứng dụng
            InitializeComponent();
            st    = new Setting(this);
            Title = title;
            Icon  = BitmapFrame.Create(new BitmapImage(iconUri));
            #endregion

            #region timerStart
            // Bắt đầu bộ đếm giờ
            dispatcherTimer.Tick    += new EventHandler(dispatcherTimer_Tick);
            dispatcherTimer.Interval = new TimeSpan(0, 0, refreshTime);
            dispatcherTimer.Start();
            #endregion

            #region captureMouseOnTextBox
            // Theo dõi chuột trên Textbox
            startPos.GotMouseCapture += StartPos_GotMouseCapture;
            endPos.GotMouseCapture   += EndPos_GotMouseCapture;
            startPos.IsReadOnly       = false;
            endPos.IsReadOnly         = false;
            #endregion

            #region drawMap
            // Download dữ liệu nếu đang trực tuyến và vẽ Kho Hàng
            KhoHang.downloadFile();

            GenerateMap();
            GenerateZoomMenu();
            #endregion
        }
Beispiel #2
0
 // Bộ đếm giờ làm việc
 protected void dispatcherTimer_Tick(object sender, EventArgs e)
 {
     // Nếu đang trực tuyến thì cập nhật
     if (isOnline == true && Ftp == true)
     {
         KhoHang.downloadFile();
         khoHang.loadData();
     }
     RefreshData();
 }