📄 testdataset1.designer.cs
字号:
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(System.Xml.Schema.XmlSchemaSet xs) {
testDataSet1 ds = new testDataSet1();
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any = new System.Xml.Schema.XmlSchemaAny();
any.Namespace = ds.Namespace;
sequence.Items.Add(any);
type.Particle = sequence;
return type;
}
public delegate void 服务管理信息RowChangeEventHandler(object sender, 服务管理信息RowChangeEvent e);
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class 服务管理信息DataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn column服务编号;
private System.Data.DataColumn column服务名称;
private System.Data.DataColumn column服务类别;
private System.Data.DataColumn column内容;
private System.Data.DataColumn column委托人;
private System.Data.DataColumn column受托人;
private System.Data.DataColumn column数量;
private System.Data.DataColumn column委托时间;
private System.Data.DataColumn column预期完成时间;
private System.Data.DataColumn column时间说明;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 服务管理信息DataTable() {
this.TableName = "服务管理信息";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal 服务管理信息DataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected 服务管理信息DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 服务编号Column {
get {
return this.column服务编号;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 服务名称Column {
get {
return this.column服务名称;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 服务类别Column {
get {
return this.column服务类别;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 内容Column {
get {
return this.column内容;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 委托人Column {
get {
return this.column委托人;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 受托人Column {
get {
return this.column受托人;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 数量Column {
get {
return this.column数量;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 委托时间Column {
get {
return this.column委托时间;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 预期完成时间Column {
get {
return this.column预期完成时间;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 时间说明Column {
get {
return this.column时间说明;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 服务管理信息Row this[int index] {
get {
return ((服务管理信息Row)(this.Rows[index]));
}
}
public event 服务管理信息RowChangeEventHandler 服务管理信息RowChanging;
public event 服务管理信息RowChangeEventHandler 服务管理信息RowChanged;
public event 服务管理信息RowChangeEventHandler 服务管理信息RowDeleting;
public event 服务管理信息RowChangeEventHandler 服务管理信息RowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Add服务管理信息Row(服务管理信息Row row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 服务管理信息Row Add服务管理信息Row(long 服务编号, string 服务名称, string 服务类别, string 内容, string 委托人, string 受托人, long 数量, System.DateTime 委托时间, System.DateTime 预期完成时间, string 时间说明) {
服务管理信息Row row服务管理信息Row = ((服务管理信息Row)(this.NewRow()));
row服务管理信息Row.ItemArray = new object[] {
服务编号,
服务名称,
服务类别,
内容,
委托人,
受托人,
数量,
委托时间,
预期完成时间,
时间说明};
this.Rows.Add(row服务管理信息Row);
return row服务管理信息Row;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 服务管理信息Row FindBy服务编号(long 服务编号) {
return ((服务管理信息Row)(this.Rows.Find(new object[] {
服务编号})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
服务管理信息DataTable cln = ((服务管理信息DataTable)(base.Clone()));
cln.InitVars();
return cln;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -