📄 libbookdataset_reader.designer.cs
字号:
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 Reader_viewRow this[int index] {
get {
return ((Reader_viewRow)(this.Rows[index]));
}
}
public event Reader_viewRowChangeEventHandler Reader_viewRowChanging;
public event Reader_viewRowChangeEventHandler Reader_viewRowChanged;
public event Reader_viewRowChangeEventHandler Reader_viewRowDeleting;
public event Reader_viewRowChangeEventHandler Reader_viewRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddReader_viewRow(Reader_viewRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public Reader_viewRow AddReader_viewRow(string 读者编号, string 姓名, string 性别, string 有效证件, string 证件号, string 电话, System.DateTime 登记日期, string 读者级别, decimal 押金) {
Reader_viewRow rowReader_viewRow = ((Reader_viewRow)(this.NewRow()));
rowReader_viewRow.ItemArray = new object[] {
读者编号,
姓名,
性别,
有效证件,
证件号,
电话,
登记日期,
读者级别,
押金};
this.Rows.Add(rowReader_viewRow);
return rowReader_viewRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public Reader_viewRow FindBy读者编号(string 读者编号) {
return ((Reader_viewRow)(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() {
Reader_viewDataTable cln = ((Reader_viewDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new Reader_viewDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.column读者编号 = base.Columns["读者编号"];
this.column姓名 = base.Columns["姓名"];
this.column性别 = base.Columns["性别"];
this.column有效证件 = base.Columns["有效证件"];
this.column证件号 = base.Columns["证件号"];
this.column电话 = base.Columns["电话"];
this.column登记日期 = base.Columns["登记日期"];
this.column读者级别 = base.Columns["读者级别"];
this.column押金 = base.Columns["押金"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.column读者编号 = new System.Data.DataColumn("读者编号", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column读者编号);
this.column姓名 = new System.Data.DataColumn("姓名", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column姓名);
this.column性别 = new System.Data.DataColumn("性别", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column性别);
this.column有效证件 = new System.Data.DataColumn("有效证件", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column有效证件);
this.column证件号 = new System.Data.DataColumn("证件号", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column证件号);
this.column电话 = new System.Data.DataColumn("电话", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column电话);
this.column登记日期 = new System.Data.DataColumn("登记日期", typeof(System.DateTime), null, System.Data.MappingType.Element);
base.Columns.Add(this.column登记日期);
this.column读者级别 = new System.Data.DataColumn("读者级别", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column读者级别);
this.column押金 = new System.Data.DataColumn("押金", typeof(decimal), 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.column读者编号.MaxLength = 50;
this.column姓名.AllowDBNull = false;
this.column姓名.MaxLength = 50;
this.column性别.AllowDBNull = false;
this.column性别.MaxLength = 4;
this.column有效证件.AllowDBNull = false;
this.column有效证件.MaxLength = 8;
this.column证件号.AllowDBNull = false;
this.column证件号.MaxLength = 20;
this.column电话.AllowDBNull = false;
this.column电话.MaxLength = 10;
this.column登记日期.AllowDBNull = false;
this.column读者级别.MaxLength = 20;
this.column押金.AllowDBNull = false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public Reader_viewRow NewReader_viewRow() {
return ((Reader_viewRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new Reader_viewRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(Reader_viewRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.Reader_viewRowChanged != null)) {
this.Reader_viewRowChanged(this, new Reader_viewRowChangeEvent(((Reader_viewRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.Reader_viewRowChanging != null)) {
this.Reader_viewRowChanging(this, new Reader_viewRowChangeEvent(((Reader_viewRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.Reader_viewRowDeleted != null)) {
this.Reader_viewRowDeleted(this, new Reader_viewRowChangeEvent(((Reader_viewRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.Reader_viewRowDeleting != null)) {
this.Reader_viewRowDeleting(this, new Reader_viewRowChangeEvent(((Reader_viewRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveReader_viewRow(Reader_viewRow 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();
libbookDataSet_Reader ds = new libbookDataSet_Reader();
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 = "Reader_viewDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class Reader_viewRow : System.Data.DataRow {
private Reader_viewDataTable tableReader_view;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal Reader_viewRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableReader_view = ((Reader_viewDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -