Files
csharpcode/omegapro/Omega/Forms/frmQuizMan.Designer.cs
2025-08-02 05:20:17 +07:00

373 lines
20 KiB
C#

namespace Omega.Forms
{
partial class frmQuizMan
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmQuizMan));
this.grdQuiz = new DevExpress.XtraGrid.GridControl();
this.persistentRepository = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
this.repoQuizTemplate = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.tblQuizTemplateEntityBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.repoSubject = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.tblSubjectEntityBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
this.colQuizId = new DevExpress.XtraGrid.Columns.GridColumn();
this.colQuizName = new DevExpress.XtraGrid.Columns.GridColumn();
this.colQuizTemplateId = new DevExpress.XtraGrid.Columns.GridColumn();
this.colQuizTime = new DevExpress.XtraGrid.Columns.GridColumn();
this.colQuizYear = new DevExpress.XtraGrid.Columns.GridColumn();
this.colQuizCode = new DevExpress.XtraGrid.Columns.GridColumn();
this.barManager = new DevExpress.XtraBars.BarManager(this.components);
this.bar1 = new DevExpress.XtraBars.Bar();
this.Create = new DevExpress.XtraBars.BarButtonItem();
this.barDelete = new DevExpress.XtraBars.BarButtonItem();
this.barSubPrint = new DevExpress.XtraBars.BarSubItem();
this.barAnswerPrint = new DevExpress.XtraBars.BarButtonItem();
this.Print = new DevExpress.XtraBars.BarButtonItem();
this.CloseForm = new DevExpress.XtraBars.BarButtonItem();
this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
this.barListItem1 = new DevExpress.XtraBars.BarListItem();
this.progressPanel = new DevExpress.XtraWaitForm.ProgressPanel();
((System.ComponentModel.ISupportInitialize)(this.grdQuiz)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repoQuizTemplate)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblQuizTemplateEntityBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repoSubject)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblSubjectEntityBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.barManager)).BeginInit();
this.SuspendLayout();
//
// grdQuiz
//
this.grdQuiz.Dock = System.Windows.Forms.DockStyle.Fill;
this.grdQuiz.ExternalRepository = this.persistentRepository;
this.grdQuiz.Location = new System.Drawing.Point(0, 47);
this.grdQuiz.MainView = this.gridView1;
this.grdQuiz.Name = "grdQuiz";
this.grdQuiz.Size = new System.Drawing.Size(802, 347);
this.grdQuiz.TabIndex = 6;
this.grdQuiz.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.gridView1});
//
// persistentRepository
//
this.persistentRepository.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
this.repoQuizTemplate,
this.repoSubject});
//
// repoQuizTemplate
//
this.repoQuizTemplate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.repoQuizTemplate.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", "Mẫu đề", 150, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
this.repoQuizTemplate.DataSource = this.tblQuizTemplateEntityBindingSource;
this.repoQuizTemplate.DisplayMember = "TemplateQuizName";
this.repoQuizTemplate.Name = "repoQuizTemplate";
this.repoQuizTemplate.ValueMember = "QuizTemplateId";
//
// tblQuizTemplateEntityBindingSource
//
this.tblQuizTemplateEntityBindingSource.DataSource = typeof(Datalib.EntityClasses.TblQuizTemplateEntity);
//
// repoSubject
//
this.repoSubject.AutoHeight = false;
this.repoSubject.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.repoSubject.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", "Môn học", 120, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
this.repoSubject.DataSource = this.tblSubjectEntityBindingSource;
this.repoSubject.DisplayMember = "SubjectName";
this.repoSubject.Name = "repoSubject";
this.repoSubject.PopupWidth = 150;
this.repoSubject.ValueMember = "SubjectId";
//
// tblSubjectEntityBindingSource
//
this.tblSubjectEntityBindingSource.DataSource = typeof(Datalib.EntityClasses.TblSubjectEntity);
//
// gridView1
//
this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
this.colQuizId,
this.colQuizName,
this.colQuizTemplateId,
this.colQuizTime,
this.colQuizYear,
this.colQuizCode});
this.gridView1.GridControl = this.grdQuiz;
this.gridView1.Name = "gridView1";
this.gridView1.OptionsView.ShowDetailButtons = false;
this.gridView1.OptionsView.ShowGroupExpandCollapseButtons = false;
this.gridView1.OptionsView.ShowGroupPanel = false;
this.gridView1.OptionsView.ShowViewCaption = true;
this.gridView1.ViewCaption = "Danh sách đề thi";
//
// colQuizId
//
this.colQuizId.Caption = "Mã đề thi";
this.colQuizId.FieldName = "QuizId";
this.colQuizId.Name = "colQuizId";
//
// colQuizName
//
this.colQuizName.Caption = "Tên đề thi";
this.colQuizName.FieldName = "QuizName";
this.colQuizName.Name = "colQuizName";
this.colQuizName.Visible = true;
this.colQuizName.VisibleIndex = 1;
//
// colQuizTemplateId
//
this.colQuizTemplateId.Caption = "Mẫu đề thi";
this.colQuizTemplateId.ColumnEdit = this.repoQuizTemplate;
this.colQuizTemplateId.FieldName = "QuizTemplateId";
this.colQuizTemplateId.Name = "colQuizTemplateId";
this.colQuizTemplateId.Visible = true;
this.colQuizTemplateId.VisibleIndex = 2;
//
// colQuizTime
//
this.colQuizTime.Caption = "Thời gian thi";
this.colQuizTime.FieldName = "QuizTime";
this.colQuizTime.Name = "colQuizTime";
this.colQuizTime.Visible = true;
this.colQuizTime.VisibleIndex = 3;
//
// colQuizYear
//
this.colQuizYear.Caption = "Năm thi";
this.colQuizYear.FieldName = "QuizYear";
this.colQuizYear.Name = "colQuizYear";
this.colQuizYear.Visible = true;
this.colQuizYear.VisibleIndex = 4;
//
// colQuizCode
//
this.colQuizCode.Caption = "Mã đề thi";
this.colQuizCode.FieldName = "QuizCode";
this.colQuizCode.Name = "colQuizCode";
this.colQuizCode.Visible = true;
this.colQuizCode.VisibleIndex = 0;
//
// barManager
//
this.barManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
this.bar1});
this.barManager.DockControls.Add(this.barDockControlTop);
this.barManager.DockControls.Add(this.barDockControlBottom);
this.barManager.DockControls.Add(this.barDockControlLeft);
this.barManager.DockControls.Add(this.barDockControlRight);
this.barManager.Form = this;
this.barManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
this.Create,
this.CloseForm,
this.Print,
this.barDelete,
this.barListItem1,
this.barSubPrint,
this.barAnswerPrint});
this.barManager.MaxItemId = 9;
//
// bar1
//
this.bar1.BarName = "Tools";
this.bar1.DockCol = 0;
this.bar1.DockRow = 0;
this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barDelete, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubPrint, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.CloseForm, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
this.bar1.Text = "Tools";
//
// Create
//
this.Create.Caption = "Tạo đề";
this.Create.Glyph = ((System.Drawing.Image)(resources.GetObject("Create.Glyph")));
this.Create.Id = 0;
this.Create.Name = "Create";
this.Create.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Create_ItemClick);
//
// barDelete
//
this.barDelete.Caption = "Delete";
this.barDelete.Glyph = ((System.Drawing.Image)(resources.GetObject("barDelete.Glyph")));
this.barDelete.Id = 5;
this.barDelete.Name = "barDelete";
this.barDelete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barDelete_ItemClick);
//
// barSubPrint
//
this.barSubPrint.Caption = "Print";
this.barSubPrint.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubPrint.Glyph")));
this.barSubPrint.Id = 7;
this.barSubPrint.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barAnswerPrint, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.Print, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
this.barSubPrint.Name = "barSubPrint";
//
// barAnswerPrint
//
this.barAnswerPrint.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Left;
this.barAnswerPrint.Caption = "In đáp án";
this.barAnswerPrint.Glyph = ((System.Drawing.Image)(resources.GetObject("barAnswerPrint.Glyph")));
this.barAnswerPrint.GlyphDisabled = ((System.Drawing.Image)(resources.GetObject("barAnswerPrint.GlyphDisabled")));
this.barAnswerPrint.Id = 8;
this.barAnswerPrint.Name = "barAnswerPrint";
this.barAnswerPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barAnswerPrint_ItemClick);
//
// Print
//
this.Print.Caption = "In đề";
this.Print.Glyph = ((System.Drawing.Image)(resources.GetObject("Print.Glyph")));
this.Print.Id = 4;
this.Print.Name = "Print";
this.Print.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Print_ItemClick);
//
// CloseForm
//
this.CloseForm.Caption = "Đóng";
this.CloseForm.Glyph = ((System.Drawing.Image)(resources.GetObject("CloseForm.Glyph")));
this.CloseForm.Id = 3;
this.CloseForm.Name = "CloseForm";
this.CloseForm.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.CloseForm_ItemClick);
//
// barDockControlTop
//
this.barDockControlTop.CausesValidation = false;
this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
this.barDockControlTop.Size = new System.Drawing.Size(802, 47);
//
// barDockControlBottom
//
this.barDockControlBottom.CausesValidation = false;
this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.barDockControlBottom.Location = new System.Drawing.Point(0, 394);
this.barDockControlBottom.Size = new System.Drawing.Size(802, 0);
//
// barDockControlLeft
//
this.barDockControlLeft.CausesValidation = false;
this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
this.barDockControlLeft.Location = new System.Drawing.Point(0, 47);
this.barDockControlLeft.Size = new System.Drawing.Size(0, 347);
//
// barDockControlRight
//
this.barDockControlRight.CausesValidation = false;
this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
this.barDockControlRight.Location = new System.Drawing.Point(802, 47);
this.barDockControlRight.Size = new System.Drawing.Size(0, 347);
//
// barListItem1
//
this.barListItem1.Caption = "barListItem1";
this.barListItem1.Id = 6;
this.barListItem1.Name = "barListItem1";
//
// progressPanel
//
this.progressPanel.Appearance.BackColor = System.Drawing.Color.Transparent;
this.progressPanel.Appearance.Options.UseBackColor = true;
this.progressPanel.AppearanceCaption.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
this.progressPanel.AppearanceCaption.Options.UseFont = true;
this.progressPanel.AppearanceDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
this.progressPanel.AppearanceDescription.Options.UseFont = true;
this.progressPanel.Description = "Calculating...";
this.progressPanel.Location = new System.Drawing.Point(222, 160);
this.progressPanel.Name = "progressPanel";
this.progressPanel.Size = new System.Drawing.Size(299, 66);
this.progressPanel.TabIndex = 11;
this.progressPanel.Visible = false;
//
// frmQuizMan
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.ClientSize = new System.Drawing.Size(802, 394);
this.Controls.Add(this.progressPanel);
this.Controls.Add(this.grdQuiz);
this.Controls.Add(this.barDockControlLeft);
this.Controls.Add(this.barDockControlRight);
this.Controls.Add(this.barDockControlBottom);
this.Controls.Add(this.barDockControlTop);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmQuizMan";
this.Text = "Quản lý đề thi";
((System.ComponentModel.ISupportInitialize)(this.grdQuiz)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repoQuizTemplate)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tblQuizTemplateEntityBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repoSubject)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tblSubjectEntityBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.barManager)).EndInit();
this.ResumeLayout(false);
}
#endregion
private DevExpress.XtraGrid.GridControl grdQuiz;
private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
private DevExpress.XtraGrid.Columns.GridColumn colQuizId;
private DevExpress.XtraGrid.Columns.GridColumn colQuizName;
private DevExpress.XtraGrid.Columns.GridColumn colQuizTemplateId;
private DevExpress.XtraGrid.Columns.GridColumn colQuizTime;
private DevExpress.XtraGrid.Columns.GridColumn colQuizYear;
private DevExpress.XtraEditors.Repository.PersistentRepository persistentRepository;
private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repoQuizTemplate;
private System.Windows.Forms.BindingSource tblQuizTemplateEntityBindingSource;
private DevExpress.XtraBars.BarManager barManager;
private DevExpress.XtraBars.Bar bar1;
private DevExpress.XtraBars.BarButtonItem Create;
private DevExpress.XtraBars.BarButtonItem CloseForm;
private DevExpress.XtraBars.BarButtonItem Print;
private DevExpress.XtraBars.BarDockControl barDockControlTop;
private DevExpress.XtraBars.BarDockControl barDockControlBottom;
private DevExpress.XtraBars.BarDockControl barDockControlLeft;
private DevExpress.XtraBars.BarDockControl barDockControlRight;
private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repoSubject;
private System.Windows.Forms.BindingSource tblSubjectEntityBindingSource;
private DevExpress.XtraGrid.Columns.GridColumn colQuizCode;
private DevExpress.XtraBars.BarButtonItem barDelete;
private DevExpress.XtraWaitForm.ProgressPanel progressPanel;
private DevExpress.XtraBars.BarSubItem barSubPrint;
private DevExpress.XtraBars.BarButtonItem barAnswerPrint;
private DevExpress.XtraBars.BarListItem barListItem1;
}
}