📄 dataset1.designer.cs
字号:
this.column出版社.MaxLength = 100;
this.column书架名称.MaxLength = 200;
this.column操作员.MaxLength = 20;
this.column简介.MaxLength = 100;
this.column是否注销.AllowDBNull = false;
this.column借阅编号.AutoIncrement = true;
this.column借阅编号.AllowDBNull = false;
this.column借阅编号.ReadOnly = true;
this.column状态.MaxLength = 10;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 图书信息Row New图书信息Row() {
return ((图书信息Row)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new 图书信息Row(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(图书信息Row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.图书信息RowChanged != null)) {
this.图书信息RowChanged(this, new 图书信息RowChangeEvent(((图书信息Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.图书信息RowChanging != null)) {
this.图书信息RowChanging(this, new 图书信息RowChangeEvent(((图书信息Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.图书信息RowDeleted != null)) {
this.图书信息RowDeleted(this, new 图书信息RowChangeEvent(((图书信息Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.图书信息RowDeleting != null)) {
this.图书信息RowDeleting(this, new 图书信息RowChangeEvent(((图书信息Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void Remove图书信息Row(图书信息Row 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();
DataSet1 ds = new DataSet1();
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 = "图书信息DataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[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 columnISBN;
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 ISBNColumn {
get {
return this.columnISBN;
}
}
[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(int 出版社编号, string ISBN, string 出版社名称) {
出版社Row row出版社Row = ((出版社Row)(this.NewRow()));
row出版社Row.ItemArray = new object[] {
出版社编号,
ISBN,
出版社名称};
this.Rows.Add(row出版社Row);
return row出版社Row;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 出版社Row FindBy出版社编号(int 出版社编号) {
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;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new 出版社DataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.column出版社编号 = base.Columns["出版社编号"];
this.columnISBN = base.Columns["ISBN"];
this.column出版社名称 = base.Columns["出版社名称"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.column出版社编号 = new System.Data.DataColumn("出版社编号", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.column出版社编号);
this.columnISBN = new System.Data.DataColumn("ISBN", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnISBN);
this.column出版社名称 = new System.Data.DataColumn("出版社名称", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column出版社名称);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.column出版社编号}, true));
this.column出版社编号.AllowDBNull = false;
this.column出版社编号.Unique = true;
this.columnISBN.MaxLength = 40;
this.column出版社名称.MaxLength = 200;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public 出版社Row New出版社Row() {
return ((出版社Row)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new 出版社Row(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(出版社Row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.出版社RowChanged != null)) {
this.出版社RowChanged(this, new 出版社RowChangeEvent(((出版社Row)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.出版社RowChanging != null)) {
this.出版社RowChanging(this, new 出版社RowChangeEvent(((出版社Row)(e.Row)), e.Action));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -