Upload to server

uploading
This commit is contained in:
2025-08-02 05:20:17 +07:00
commit a5eccbd452
984 changed files with 3031800 additions and 0 deletions

View File

@@ -0,0 +1,267 @@
namespace Omega.Forms
{
partial class frmWarning
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Field = new DevExpress.XtraEditors.TextEdit();
this.tblQuizTemplateDetailEntityBindingSource = new System.Windows.Forms.BindingSource();
this.SubjectId = new DevExpress.XtraEditors.LookUpEdit();
this.tblSubjectEntityBindingSource = new System.Windows.Forms.BindingSource();
this.Level = new DevExpress.XtraEditors.TextEdit();
this.Difficulty = new DevExpress.XtraEditors.TextEdit();
this.QuestionNum = new DevExpress.XtraEditors.TextEdit();
this.QuizTemplate = new DevExpress.XtraEditors.LookUpEdit();
this.tblQuizTemplateEntityBindingSource = new System.Windows.Forms.BindingSource();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
this.RestQuestionNum = new DevExpress.XtraEditors.TextEdit();
((System.ComponentModel.ISupportInitialize)(this.Field.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblQuizTemplateDetailEntityBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.SubjectId.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblSubjectEntityBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.Level.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.Difficulty.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.QuestionNum.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.QuizTemplate.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblQuizTemplateEntityBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.RestQuestionNum.Properties)).BeginInit();
this.SuspendLayout();
//
// Field
//
this.Field.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.tblQuizTemplateDetailEntityBindingSource, "FieldId", true));
this.Field.Enabled = false;
this.Field.Location = new System.Drawing.Point(180, 103);
this.Field.Name = "Field";
this.Field.Size = new System.Drawing.Size(94, 20);
this.Field.TabIndex = 0;
//
// tblQuizTemplateDetailEntityBindingSource
//
this.tblQuizTemplateDetailEntityBindingSource.DataSource = typeof(Datalib.EntityClasses.TblQuizTemplateDetailEntity);
//
// SubjectId
//
this.SubjectId.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.tblQuizTemplateDetailEntityBindingSource, "SubjectId", true));
this.SubjectId.Enabled = false;
this.SubjectId.Location = new System.Drawing.Point(180, 70);
this.SubjectId.Name = "SubjectId";
this.SubjectId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.SubjectId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SubjectId", "Subject Id", 59, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Near),
new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SubjectName", "Subject Name", 150, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
this.SubjectId.Properties.DataSource = this.tblSubjectEntityBindingSource;
this.SubjectId.Properties.DisplayMember = "SubjectName";
this.SubjectId.Properties.ValueMember = "SubjectId";
this.SubjectId.Size = new System.Drawing.Size(240, 20);
this.SubjectId.TabIndex = 1;
//
// tblSubjectEntityBindingSource
//
this.tblSubjectEntityBindingSource.DataSource = typeof(Datalib.EntityClasses.TblSubjectEntity);
//
// Level
//
this.Level.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.tblQuizTemplateDetailEntityBindingSource, "Level", true));
this.Level.Enabled = false;
this.Level.Location = new System.Drawing.Point(180, 136);
this.Level.Name = "Level";
this.Level.Size = new System.Drawing.Size(94, 20);
this.Level.TabIndex = 2;
//
// Difficulty
//
this.Difficulty.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.tblQuizTemplateDetailEntityBindingSource, "Difficulty", true));
this.Difficulty.Enabled = false;
this.Difficulty.Location = new System.Drawing.Point(180, 169);
this.Difficulty.Name = "Difficulty";
this.Difficulty.Size = new System.Drawing.Size(94, 20);
this.Difficulty.TabIndex = 3;
//
// QuestionNum
//
this.QuestionNum.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.tblQuizTemplateDetailEntityBindingSource, "QuestionNum", true));
this.QuestionNum.Enabled = false;
this.QuestionNum.Location = new System.Drawing.Point(180, 202);
this.QuestionNum.Name = "QuestionNum";
this.QuestionNum.Size = new System.Drawing.Size(94, 20);
this.QuestionNum.TabIndex = 4;
//
// QuizTemplate
//
this.QuizTemplate.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.tblQuizTemplateDetailEntityBindingSource, "QuizTemplateId", true));
this.QuizTemplate.Enabled = false;
this.QuizTemplate.Location = new System.Drawing.Point(180, 37);
this.QuizTemplate.Name = "QuizTemplate";
this.QuizTemplate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.QuizTemplate.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
new DevExpress.XtraEditors.Controls.LookUpColumnInfo("QuizTemplateId", "Quiz Template Id", 91, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Near),
new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TemplateQuizName", "Quiz Template Name", 150, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
this.QuizTemplate.Properties.DataSource = this.tblQuizTemplateEntityBindingSource;
this.QuizTemplate.Properties.DisplayMember = "TemplateQuizName";
this.QuizTemplate.Properties.ValueMember = "QuizTemplateId";
this.QuizTemplate.Size = new System.Drawing.Size(240, 20);
this.QuizTemplate.TabIndex = 5;
//
// tblQuizTemplateEntityBindingSource
//
this.tblQuizTemplateEntityBindingSource.DataSource = typeof(Datalib.EntityClasses.TblQuizTemplateEntity);
//
// labelControl1
//
this.labelControl1.Location = new System.Drawing.Point(88, 40);
this.labelControl1.Name = "labelControl1";
this.labelControl1.Size = new System.Drawing.Size(68, 13);
this.labelControl1.TabIndex = 6;
this.labelControl1.Text = "Quiz Template";
//
// labelControl2
//
this.labelControl2.Location = new System.Drawing.Point(116, 77);
this.labelControl2.Name = "labelControl2";
this.labelControl2.Size = new System.Drawing.Size(40, 13);
this.labelControl2.TabIndex = 7;
this.labelControl2.Text = "Môn học";
//
// labelControl3
//
this.labelControl3.Location = new System.Drawing.Point(116, 110);
this.labelControl3.Name = "labelControl3";
this.labelControl3.Size = new System.Drawing.Size(40, 13);
this.labelControl3.TabIndex = 8;
this.labelControl3.Text = "Lĩnh vực";
//
// labelControl4
//
this.labelControl4.Location = new System.Drawing.Point(74, 143);
this.labelControl4.Name = "labelControl4";
this.labelControl4.Size = new System.Drawing.Size(82, 13);
this.labelControl4.TabIndex = 9;
this.labelControl4.Text = "Mức độ kiến thức";
//
// labelControl5
//
this.labelControl5.Location = new System.Drawing.Point(122, 176);
this.labelControl5.Name = "labelControl5";
this.labelControl5.Size = new System.Drawing.Size(34, 13);
this.labelControl5.TabIndex = 10;
this.labelControl5.Text = "Độ khó";
//
// labelControl6
//
this.labelControl6.Location = new System.Drawing.Point(66, 209);
this.labelControl6.Name = "labelControl6";
this.labelControl6.Size = new System.Drawing.Size(90, 13);
this.labelControl6.TabIndex = 11;
this.labelControl6.Text = "Số câu hỏi yêu cầu";
//
// labelControl7
//
this.labelControl7.Location = new System.Drawing.Point(61, 243);
this.labelControl7.Name = "labelControl7";
this.labelControl7.Size = new System.Drawing.Size(95, 13);
this.labelControl7.TabIndex = 13;
this.labelControl7.Text = "Số câu hỏi trong QB";
//
// RestQuestionNum
//
this.RestQuestionNum.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.tblQuizTemplateDetailEntityBindingSource, "QuestionNum", true));
this.RestQuestionNum.Enabled = false;
this.RestQuestionNum.Location = new System.Drawing.Point(180, 236);
this.RestQuestionNum.Name = "RestQuestionNum";
this.RestQuestionNum.Size = new System.Drawing.Size(94, 20);
this.RestQuestionNum.TabIndex = 12;
//
// frmWarning
//
this.Appearance.BackColor = System.Drawing.Color.White;
this.Appearance.Options.UseBackColor = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.ClientSize = new System.Drawing.Size(462, 273);
this.Controls.Add(this.labelControl7);
this.Controls.Add(this.RestQuestionNum);
this.Controls.Add(this.labelControl6);
this.Controls.Add(this.labelControl5);
this.Controls.Add(this.labelControl4);
this.Controls.Add(this.labelControl3);
this.Controls.Add(this.labelControl2);
this.Controls.Add(this.labelControl1);
this.Controls.Add(this.QuizTemplate);
this.Controls.Add(this.QuestionNum);
this.Controls.Add(this.Difficulty);
this.Controls.Add(this.Level);
this.Controls.Add(this.SubjectId);
this.Controls.Add(this.Field);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "frmWarning";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Cảnh báo";
this.Load += new System.EventHandler(this.frmWarning_Load);
((System.ComponentModel.ISupportInitialize)(this.Field.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tblQuizTemplateDetailEntityBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.SubjectId.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tblSubjectEntityBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.Level.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.Difficulty.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.QuestionNum.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.QuizTemplate.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tblQuizTemplateEntityBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.RestQuestionNum.Properties)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DevExpress.XtraEditors.TextEdit Field;
private System.Windows.Forms.BindingSource tblQuizTemplateDetailEntityBindingSource;
private DevExpress.XtraEditors.LookUpEdit SubjectId;
private System.Windows.Forms.BindingSource tblSubjectEntityBindingSource;
private DevExpress.XtraEditors.TextEdit Level;
private DevExpress.XtraEditors.TextEdit Difficulty;
private DevExpress.XtraEditors.TextEdit QuestionNum;
private DevExpress.XtraEditors.LookUpEdit QuizTemplate;
private DevExpress.XtraEditors.LabelControl labelControl1;
private DevExpress.XtraEditors.LabelControl labelControl2;
private DevExpress.XtraEditors.LabelControl labelControl3;
private DevExpress.XtraEditors.LabelControl labelControl4;
private DevExpress.XtraEditors.LabelControl labelControl5;
private DevExpress.XtraEditors.LabelControl labelControl6;
private DevExpress.XtraEditors.LabelControl labelControl7;
private System.Windows.Forms.BindingSource tblQuizTemplateEntityBindingSource;
public DevExpress.XtraEditors.TextEdit RestQuestionNum;
}
}