📄 databasedataset.designer.cs
字号:
Name,
sex,
Phone,
QQ,
email,
address};
this.Rows.Add(rowLinkRow);
return rowLinkRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LinkRow FindByNO(int NO) {
return ((LinkRow)(this.Rows.Find(new object[] {
NO})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
LinkDataTable cln = ((LinkDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new LinkDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnNO = base.Columns["NO"];
this.columnName = base.Columns["Name"];
this.columnsex = base.Columns["sex"];
this.columnPhone = base.Columns["Phone"];
this.columnQQ = base.Columns["QQ"];
this.columnemail = base.Columns["email"];
this.columnaddress = base.Columns["address"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnNO = new System.Data.DataColumn("NO", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnNO);
this.columnName = new System.Data.DataColumn("Name", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnName);
this.columnsex = new System.Data.DataColumn("sex", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnsex);
this.columnPhone = new System.Data.DataColumn("Phone", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnPhone);
this.columnQQ = new System.Data.DataColumn("QQ", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnQQ);
this.columnemail = new System.Data.DataColumn("email", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnemail);
this.columnaddress = new System.Data.DataColumn("address", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnaddress);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.columnNO}, true));
this.columnNO.AutoIncrement = true;
this.columnNO.AllowDBNull = false;
this.columnNO.ReadOnly = true;
this.columnNO.Unique = true;
this.columnName.AllowDBNull = false;
this.columnName.MaxLength = 100;
this.columnsex.AllowDBNull = false;
this.columnsex.MaxLength = 100;
this.columnPhone.AllowDBNull = false;
this.columnPhone.MaxLength = 100;
this.columnQQ.MaxLength = 100;
this.columnemail.MaxLength = 100;
this.columnaddress.MaxLength = 100;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LinkRow NewLinkRow() {
return ((LinkRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new LinkRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(LinkRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.LinkRowChanged != null)) {
this.LinkRowChanged(this, new LinkRowChangeEvent(((LinkRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.LinkRowChanging != null)) {
this.LinkRowChanging(this, new LinkRowChangeEvent(((LinkRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.LinkRowDeleted != null)) {
this.LinkRowDeleted(this, new LinkRowChangeEvent(((LinkRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.LinkRowDeleting != null)) {
this.LinkRowDeleting(this, new LinkRowChangeEvent(((LinkRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveLinkRow(LinkRow 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();
DatabaseDataSet ds = new DatabaseDataSet();
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 = "LinkDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
public partial class LinkRow : System.Data.DataRow {
private LinkDataTable tableLink;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal LinkRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableLink = ((LinkDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int NO {
get {
return ((int)(this[this.tableLink.NOColumn]));
}
set {
this[this.tableLink.NOColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Name {
get {
return ((string)(this[this.tableLink.NameColumn]));
}
set {
this[this.tableLink.NameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string sex {
get {
return ((string)(this[this.tableLink.sexColumn]));
}
set {
this[this.tableLink.sexColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Phone {
get {
return ((string)(this[this.tableLink.PhoneColumn]));
}
set {
this[this.tableLink.PhoneColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string QQ {
get {
try {
return ((string)(this[this.tableLink.QQColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("表“Link”中列“QQ”的值为 DBNull。", e);
}
}
set {
this[this.tableLink.QQColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string email {
get {
try {
return ((string)(this[this.tableLink.emailColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("表“Link”中列“email”的值为 DBNull。", e);
}
}
set {
this[this.tableLink.emailColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string address {
get {
try {
return ((string)(this[this.tableLink.addressColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("表“Link”中列“address”的值为 DBNull。", e);
}
}
set {
this[this.tableLink.addressColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsQQNull() {
return this.IsNull(this.tableLink.QQColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetQQNull() {
this[this.tableLink.QQColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsemailNull() {
return this.IsNull(this.tableLink.emailColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetemailNull() {
this[this.tableLink.emailColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsaddressNull() {
return this.IsNull(this.tableLink.addressColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetaddressNull() {
this[this.tableLink.addressColumn] = System.Convert.DBNull;
}
}
public class LinkRowChangeEvent : System.EventArgs {
private LinkRow eventRow;
private System.Data.DataRowAction eventAction;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LinkRowChangeEvent(LinkRow row, System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LinkRow Row {
get {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -