📄 qxpdadataset.designer.cs
字号:
this.columnid.AutoIncrement = true;
this.columnid.AllowDBNull = false;
this.columnid.ReadOnly = true;
this.columnid.Unique = true;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public c_codeRow Newc_codeRow() {
return ((c_codeRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new c_codeRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(c_codeRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.c_codeRowChanged != null)) {
this.c_codeRowChanged(this, new c_codeRowChangeEvent(((c_codeRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.c_codeRowChanging != null)) {
this.c_codeRowChanging(this, new c_codeRowChangeEvent(((c_codeRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.c_codeRowDeleted != null)) {
this.c_codeRowDeleted(this, new c_codeRowChangeEvent(((c_codeRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.c_codeRowDeleting != null)) {
this.c_codeRowDeleting(this, new c_codeRowChangeEvent(((c_codeRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Removec_codeRow(c_codeRow row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
qxpdaDataSet ds = new qxpdaDataSet();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "c_codeDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class line_baseDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnline_code;
private System.Data.DataColumn columnline_name;
private System.Data.DataColumn columnbdz_code;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_baseDataTable() {
this.TableName = "line_base";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal line_baseDataTable(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()]
public System.Data.DataColumn line_codeColumn {
get {
return this.columnline_code;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn line_nameColumn {
get {
return this.columnline_name;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn bdz_codeColumn {
get {
return this.columnbdz_code;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_baseRow this[int index] {
get {
return ((line_baseRow)(this.Rows[index]));
}
}
public event line_baseRowChangeEventHandler line_baseRowChanging;
public event line_baseRowChangeEventHandler line_baseRowChanged;
public event line_baseRowChangeEventHandler line_baseRowDeleting;
public event line_baseRowChangeEventHandler line_baseRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Addline_baseRow(line_baseRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_baseRow Addline_baseRow(string line_name, int bdz_code) {
line_baseRow rowline_baseRow = ((line_baseRow)(this.NewRow()));
rowline_baseRow.ItemArray = new object[] {
null,
line_name,
bdz_code};
this.Rows.Add(rowline_baseRow);
return rowline_baseRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_baseRow FindByline_code(int line_code) {
return ((line_baseRow)(this.Rows.Find(new object[] {
line_code})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
line_baseDataTable cln = ((line_baseDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new line_baseDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnline_code = base.Columns["line_code"];
this.columnline_name = base.Columns["line_name"];
this.columnbdz_code = base.Columns["bdz_code"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnline_code = new System.Data.DataColumn("line_code", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnline_code);
this.columnline_name = new System.Data.DataColumn("line_name", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnline_name);
this.columnbdz_code = new System.Data.DataColumn("bdz_code", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnbdz_code);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.columnline_code}, true));
this.columnline_code.AutoIncrement = true;
this.columnline_code.AllowDBNull = false;
this.columnline_code.ReadOnly = true;
this.columnline_code.Unique = true;
this.columnline_name.MaxLength = 100;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public line_baseRow Newline_baseRow() {
return ((line_baseRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new line_baseRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(line_baseRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.line_baseRowChanged != null)) {
this.line_baseRowChanged(this, new line_baseRowChangeEvent(((line_baseRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.line_baseRowChanging != null)) {
this.line_baseRowChanging(this, new line_baseRowChangeEvent(((line_baseRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.line_baseRowDeleted != null)) {
this.line_baseRowDeleted(this, new line_baseRowChangeEvent(((line_baseRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.line_baseRowDeleting != null)) {
this.line_baseRowDeleting(this, new line_baseRowChangeEvent(((line_baseRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Removeline_baseRow(line_baseRow row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
qxpdaDataSet ds = new qxpdaDataSet();
xs.Add(ds.GetSchemaSerializable());
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -