?? profilecontrolbase.cs
字號:
?namespace Imps.Client.Pc.Provsion2
{
using Imps.Client.Core;
using System;
using System.ComponentModel;
using System.Windows.Forms;
public class ProfileControlBase : UserControl
{
protected string _errorMessage;
protected ProvsionData _pdata;
private IContainer components;
public ProfileControlBase()
{
this.InitializeComponent();
}
public ProfileControlBase(ProvsionData pdata) : this()
{
this._pdata = pdata;
}
protected override void Dispose(bool disposing)
{
if (disposing && (this.components != null))
{
this.components.Dispose();
}
base.Dispose(disposing);
}
public virtual bool GetValidData()
{
return false;
}
private void InitializeComponent()
this.components = new Container();
base.AutoScaleMode = AutoScaleMode.Font;
}
public virtual string ErrorMessage
{
get
{
return this._errorMessage;
}
}
public virtual int ID
{
get
{
return 0;
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -