📄 studentdataset.designer.cs
字号:
this.Prefix = "";
this.Namespace = "http://tempuri.org/studentDataSet.xsd";
this.EnforceConstraints = true;
this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
this.tableClass = new ClassDataTable();
base.Tables.Add(this.tableClass);
this.tableEnrolled = new EnrolledDataTable();
base.Tables.Add(this.tableEnrolled);
this.tableFaculty = new FacultyDataTable();
base.Tables.Add(this.tableFaculty);
this.tablestudent = new studentDataTable();
base.Tables.Add(this.tablestudent);
this.tableClass1 = new Class1DataTable();
base.Tables.Add(this.tableClass1);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeClass() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeEnrolled() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeFaculty() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializestudent() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeClass1() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void SchemaChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) {
if ((e.Action == System.ComponentModel.CollectionChangeAction.Remove)) {
this.InitVars();
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(System.Xml.Schema.XmlSchemaSet xs) {
studentDataSet ds = new studentDataSet();
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any = new System.Xml.Schema.XmlSchemaAny();
any.Namespace = ds.Namespace;
sequence.Items.Add(any);
type.Particle = sequence;
return type;
}
public delegate void ClassRowChangeEventHandler(object sender, ClassRowChangeEvent e);
public delegate void EnrolledRowChangeEventHandler(object sender, EnrolledRowChangeEvent e);
public delegate void FacultyRowChangeEventHandler(object sender, FacultyRowChangeEvent e);
public delegate void studentRowChangeEventHandler(object sender, studentRowChangeEvent e);
public delegate void Class1RowChangeEventHandler(object sender, Class1RowChangeEvent e);
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class ClassDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnName;
private System.Data.DataColumn columnRoom;
private System.Data.DataColumn columnTime;
private System.Data.DataColumn columnDept;
private System.Data.DataColumn columnFid;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ClassDataTable() {
this.TableName = "Class";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal ClassDataTable(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 ClassDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn NameColumn {
get {
return this.columnName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn RoomColumn {
get {
return this.columnRoom;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn TimeColumn {
get {
return this.columnTime;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn DeptColumn {
get {
return this.columnDept;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn FidColumn {
get {
return this.columnFid;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ClassRow this[int index] {
get {
return ((ClassRow)(this.Rows[index]));
}
}
public event ClassRowChangeEventHandler ClassRowChanging;
public event ClassRowChangeEventHandler ClassRowChanged;
public event ClassRowChangeEventHandler ClassRowDeleting;
public event ClassRowChangeEventHandler ClassRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddClassRow(ClassRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ClassRow AddClassRow(string Name, string Room, System.DateTime Time, string Dept, int Fid) {
ClassRow rowClassRow = ((ClassRow)(this.NewRow()));
rowClassRow.ItemArray = new object[] {
Name,
Room,
Time,
Dept,
Fid};
this.Rows.Add(rowClassRow);
return rowClassRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ClassRow FindByName(string Name) {
return ((ClassRow)(this.Rows.Find(new object[] {
Name})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
ClassDataTable cln = ((ClassDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new ClassDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnName = base.Columns["Name"];
this.columnRoom = base.Columns["Room"];
this.columnTime = base.Columns["Time"];
this.columnDept = base.Columns["Dept"];
this.columnFid = base.Columns["Fid"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnName = new System.Data.DataColumn("Name", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnName);
this.columnRoom = new System.Data.DataColumn("Room", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnRoom);
this.columnTime = new System.Data.DataColumn("Time", typeof(System.DateTime), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnTime);
this.columnDept = new System.Data.DataColumn("Dept", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnDept);
this.columnFid = new System.Data.DataColumn("Fid", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnFid);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.columnName}, true));
this.columnName.AllowDBNull = false;
this.columnName.Unique = true;
this.columnName.MaxLength = 50;
this.columnRoom.AllowDBNull = false;
this.columnRoom.MaxLength = 20;
this.columnTime.AllowDBNull = false;
this.columnDept.AllowDBNull = false;
this.columnDept.MaxLength = 50;
this.columnFid.AllowDBNull = false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ClassRow NewClassRow() {
return ((ClassRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new ClassRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(ClassRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.ClassRowChanged != null)) {
this.ClassRowChanged(this, new ClassRowChangeEvent(((ClassRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.ClassRowChanging != null)) {
this.ClassRowChanging(this, new ClassRowChangeEvent(((ClassRow)(e.Row)), e.Action));
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -