📄 dataset1.designer.cs
字号:
protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.infoTabRowDeleting != null)) {
this.infoTabRowDeleting(this, new infoTabRowChangeEvent(((infoTabRow)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveinfoTabRow(infoTabRow row) {
this.Rows.Remove(row);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
DataSet1 ds = new DataSet1();
xs.Add(ds.GetSchemaSerializable());
global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "infoTabDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
/// <summary>
///Represents strongly named DataRow class.
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class infoTabRow : global::System.Data.DataRow {
private infoTabDataTable tableinfoTab;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal infoTabRow(global::System.Data.DataRowBuilder rb) :
base(rb) {
this.tableinfoTab = ((infoTabDataTable)(this.Table));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string guid {
get {
return ((string)(this[this.tableinfoTab.guidColumn]));
}
set {
this[this.tableinfoTab.guidColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int state {
get {
try {
return ((int)(this[this.tableinfoTab.stateColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'state\' in table \'infoTab\' is DBNull.", e);
}
}
set {
this[this.tableinfoTab.stateColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string proposer {
get {
try {
return ((string)(this[this.tableinfoTab.proposerColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'proposer\' in table \'infoTab\' is DBNull.", e);
}
}
set {
this[this.tableinfoTab.proposerColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string content {
get {
try {
return ((string)(this[this.tableinfoTab.contentColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'content\' in table \'infoTab\' is DBNull.", e);
}
}
set {
this[this.tableinfoTab.contentColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string approver {
get {
try {
return ((string)(this[this.tableinfoTab.approverColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'approver\' in table \'infoTab\' is DBNull.", e);
}
}
set {
this[this.tableinfoTab.approverColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string result {
get {
try {
return ((string)(this[this.tableinfoTab.resultColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'result\' in table \'infoTab\' is DBNull.", e);
}
}
set {
this[this.tableinfoTab.resultColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsstateNull() {
return this.IsNull(this.tableinfoTab.stateColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetstateNull() {
this[this.tableinfoTab.stateColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsproposerNull() {
return this.IsNull(this.tableinfoTab.proposerColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetproposerNull() {
this[this.tableinfoTab.proposerColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IscontentNull() {
return this.IsNull(this.tableinfoTab.contentColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetcontentNull() {
this[this.tableinfoTab.contentColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsapproverNull() {
return this.IsNull(this.tableinfoTab.approverColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetapproverNull() {
this[this.tableinfoTab.approverColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsresultNull() {
return this.IsNull(this.tableinfoTab.resultColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetresultNull() {
this[this.tableinfoTab.resultColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
///Row event argument class
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public class infoTabRowChangeEvent : global::System.EventArgs {
private infoTabRow eventRow;
private global::System.Data.DataRowAction eventAction;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public infoTabRowChangeEvent(infoTabRow row, global::System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public infoTabRow Row {
get {
return this.eventRow;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
}
}
#pragma warning restore 1591
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -