コード例 #1
0
        public Sqlite_StatusTable()
        {
            current = this;
            InitializeComponent();

            this.Loaded += (sender, e) => {
                Console.WriteLine("JHLIM_DEBUG : loaded");
                if (!DataBaseInfo.bUpdated)
                {
                    DataBaseInfo.RefreshUi();
                }
            };
        }
コード例 #2
0
        public Sqlite_StatusTable()
        {
            current = this;
            InitializeComponent();

            this.Loaded += (sender, e) => {
                if (!DataBaseInfo.bUpdated)
                {
                    DataBaseInfo.RefreshUi();
                }
            };
            this.IsVisibleChanged += (sender, e) => { if (this.IsVisible && !DataBaseInfo.bUpdated)
                                                      {
                                                          DataBaseInfo.RefreshUi();
                                                      }
            };
        }
コード例 #3
0
 public Sqlite_StatusTable()
 {
     current = this;
     InitializeComponent();
 }