private void InitializeSourceGrid_Log() {
			this.dataGrid_Log.Rows.RowHeight = 21;  //處理第一列中文字體會被遮住的問題
			this.dataGrid_Log.Columns.Add("LogTime", "時間", typeof(string));
			this.dataGrid_Log.Columns.Add("Level", "層級", typeof(string));
			this.dataGrid_Log.Columns.Add("Message", "訊息", typeof(string));
			this.dataGrid_Log.Columns[0].Width = 120;
			this.dataGrid_Log.Columns[1].Width = 50;

			//修改選擇條的框線寬度與顏色
			SourceGrid.Selection.SelectionBase cSelectionBase = this.dataGrid_Log.Selection as SourceGrid.Selection.SelectionBase;
			cSelectionBase.Border = new DevAge.Drawing.RectangleBorder(new DevAge.Drawing.BorderLine(cSelectionBase.BackColor, 1));

			__cLogService = new Services.LogService();
			this.dataGrid_Log.DataSource = __cLogService.Logs;
		}
        private void InitializeSourceGrid_Log()
        {
            this.dataGrid_Log.Rows.RowHeight = 21;              //處理第一列中文字體會被遮住的問題
            this.dataGrid_Log.Columns.Add("LogTime", "時間", typeof(string));
            this.dataGrid_Log.Columns.Add("Level", "層級", typeof(string));
            this.dataGrid_Log.Columns.Add("Message", "訊息", typeof(string));
            this.dataGrid_Log.Columns[0].Width = 120;
            this.dataGrid_Log.Columns[1].Width = 50;

            //修改選擇條的框線寬度與顏色
            SourceGrid.Selection.SelectionBase cSelectionBase = this.dataGrid_Log.Selection as SourceGrid.Selection.SelectionBase;
            cSelectionBase.Border = new DevAge.Drawing.RectangleBorder(new DevAge.Drawing.BorderLine(cSelectionBase.BackColor, 1));

            __cLogService = new Services.LogService();
            this.dataGrid_Log.DataSource = __cLogService.Logs;
        }