/// <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();
            DevExpress.XtraBars.Alerter.AlertButton alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
            DevExpress.XtraBars.Alerter.AlertButton alertButton2 = new DevExpress.XtraBars.Alerter.AlertButton();
            DevExpress.XtraBars.Alerter.AlertButton alertButton3 = new DevExpress.XtraBars.Alerter.AlertButton();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form7));
            this.alertControl1 = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // alertControl1
            // 
            alertButton1.Hint = "Open";
            alertButton1.ImageIndex = 0;
            alertButton1.Name = "alertButton1";
            alertButton2.Hint = "Save";
            alertButton2.ImageIndex = 1;
            alertButton2.Name = "alertButton2";
            alertButton3.Hint = "Notes";
            alertButton3.ImageIndex = 2;
            alertButton3.Name = "alertButton3";
            this.alertControl1.Buttons.Add(alertButton1);
            this.alertControl1.Buttons.Add(alertButton2);
            this.alertControl1.Buttons.Add(alertButton3);
            this.alertControl1.Images = this.imageList1;
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "FileOpen.png");
            this.imageList1.Images.SetKeyName(1, "FileSave.png");
            this.imageList1.Images.SetKeyName(2, "GroupManageTask.png");
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(325, 129);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 0;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // Form7
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(811, 375);
            this.Controls.Add(this.button1);
            this.Name = "Form7";
            this.Text = "Form7";
            this.ResumeLayout(false);

        }
Example #2
0
        static void Main()
        {
            System.Windows.Forms.Application.EnableVisualStyles( );
            System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);

            DevExpress.UserSkins.BonusSkins.Register( );
            DevExpress.Skins.SkinManager.EnableFormSkins( );

            dsColl = DataStoreCollection.Load(DataStoreCollectionFileName);
            {
                DataStoreXtraForm o = new DataStoreXtraForm(dsColl);
                o.taskbarAssistant1.ProgressMode = DevExpress.Utils.Taskbar.Core.TaskbarButtonProgressMode.Error;
                //o.taskbarAssistant1.ProgressMode = DevExpress.Utils.Taskbar.Core.TaskbarButtonProgressMode.Indeterminate;
                //o.taskbarAssistant1.ProgressMode = DevExpress.Utils.Taskbar.Core.TaskbarButtonProgressMode.NoProgress;
                //o.taskbarAssistant1.ProgressMode = DevExpress.Utils.Taskbar.Core.TaskbarButtonProgressMode.Normal;
                //o.taskbarAssistant1.ProgressMode = DevExpress.Utils.Taskbar.Core.TaskbarButtonProgressMode.Paused;
                System.Windows.Forms.Application.Run(o);
                //o.taskbarAssistant1.ProgressMaximumValue = 10;
                //o.taskbarAssistant1.ProgressCurrentValue = 2;
                //o.taskbarAssistant1.Refresh( );
                //o.taskbarAssistant1.ProgressCurrentValue = 5;
                //o.taskbarAssistant1.Refresh( );
                //o.taskbarAssistant1.ProgressCurrentValue = 1;
                //o.taskbarAssistant1.Refresh( );
                //o.taskbarAssistant1.ProgressCurrentValue = 8;
                //o.taskbarAssistant1.Refresh( );
                //o.taskbarAssistant1.ProgressCurrentValue = 10;
                //o.taskbarAssistant1.Refresh( );
                {
                    // Create a regular custom button.
                    var svgBitmap = DevExpress.Utils.Svg.SvgBitmap.FromFile(@"D:\users\user01\source\repos\TreeListControlPOC\AQBTest\images\icons\db_red.svg");
                    DevExpress.XtraBars.Alerter.AlertButton btn1 = new DevExpress.XtraBars.Alerter.AlertButton(svgBitmap.Render(null, 0.5));
                    btn1.Hint = "Open file";
                    btn1.Name = "buttonOpen";
                    // Create a check custom button.
                    var svgBitmap1 = DevExpress.Utils.Svg.SvgBitmap.FromFile(@"D:\users\user01\source\repos\TreeListControlPOC\AQBTest\images\icons\sch_red.svg");

                    DevExpress.XtraBars.Alerter.AlertButton btn2 = new DevExpress.XtraBars.Alerter.AlertButton(svgBitmap1.Render(null, 0.5));
                    btn2.Style = DevExpress.XtraBars.Alerter.AlertButtonStyle.CheckButton;
                    btn2.Down  = true;
                    btn2.Hint  = "Alert On";
                    btn2.Name  = "buttonAlert";
                    // Add buttons to the AlertControl and subscribe to the events to process button clicks
                    o.alertControl1.Buttons.Add(btn1);
                    o.alertControl1.Buttons.Add(btn2);
                    o.alertControl1.ButtonClick       += new DevExpress.XtraBars.Alerter.AlertButtonClickEventHandler(alertControl1_ButtonClick);
                    o.alertControl1.ButtonDownChanged += new DevExpress.XtraBars.Alerter.AlertButtonDownChangedEventHandler(alertControl1_ButtonDownChanged);
                }
                // Show a sample alert window.
                DevExpress.XtraBars.Alerter.AlertInfo info = new DevExpress.XtraBars.Alerter.AlertInfo("New Window", "Text");
                o.alertControl1.Show(o, info);
            }
            dsColl.Save(DataStoreCollectionFileName);
            CreateToastNotificationsManager( );
            PullRemotely(dsColl);
        }
Example #3
0
 /// <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();
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     DevExpress.XtraBars.Alerter.AlertButton        alertButton2 = new DevExpress.XtraBars.Alerter.AlertButton();
     DevExpress.XtraBars.Alerter.AlertButton        alertButton3 = new DevExpress.XtraBars.Alerter.AlertButton();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(Form7));
     this.alertControl1 = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     this.imageList1    = new System.Windows.Forms.ImageList(this.components);
     this.button1       = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // alertControl1
     //
     alertButton1.Hint       = "Open";
     alertButton1.ImageIndex = 0;
     alertButton1.Name       = "alertButton1";
     alertButton2.Hint       = "Save";
     alertButton2.ImageIndex = 1;
     alertButton2.Name       = "alertButton2";
     alertButton3.Hint       = "Notes";
     alertButton3.ImageIndex = 2;
     alertButton3.Name       = "alertButton3";
     this.alertControl1.Buttons.Add(alertButton1);
     this.alertControl1.Buttons.Add(alertButton2);
     this.alertControl1.Buttons.Add(alertButton3);
     this.alertControl1.Images = this.imageList1;
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "FileOpen.png");
     this.imageList1.Images.SetKeyName(1, "FileSave.png");
     this.imageList1.Images.SetKeyName(2, "GroupManageTask.png");
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(325, 129);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 0;
     this.button1.Text     = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // Form7
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(811, 375);
     this.Controls.Add(this.button1);
     this.Name = "Form7";
     this.Text = "Form7";
     this.ResumeLayout(false);
 }
Example #4
0
 /// <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();
     DevExpress.XtraBars.Alerter.AlertButton alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     this.alertControl1 = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     this.textEdit1     = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // alertControl1
     //
     this.alertControl1.AppearanceText.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.alertControl1.AppearanceText.BackColor2           = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.alertControl1.AppearanceText.Font                 = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.alertControl1.AppearanceText.GradientMode         = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.alertControl1.AppearanceText.Options.UseBackColor = true;
     this.alertControl1.AppearanceText.Options.UseFont      = true;
     alertButton1.Name = "alertButton1";
     this.alertControl1.Buttons.Add(alertButton1);
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(12, 12);
     this.textEdit1.Name     = "textEdit1";
     this.textEdit1.Properties.NullValuePrompt = "Type your text";
     this.textEdit1.Properties.NullValuePromptShowForEmptyValue = true;
     this.textEdit1.Size              = new System.Drawing.Size(764, 20);
     this.textEdit1.TabIndex          = 0;
     this.textEdit1.EditValueChanged += new System.EventHandler(this.textEdit1_EditValueChanged);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(788, 48);
     this.Controls.Add(this.textEdit1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraBars.Alerter.AlertButton alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormBaseNotify));
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon();
            this.alertControl1 = new DevExpress.XtraBars.Alerter.AlertControl();
            this.SuspendLayout();
            // 
            // notifyIcon1
            // 
            this.notifyIcon1.Visible = true;
            this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
            // 
            // alertControl1
            // 
            this.alertControl1.AutoFormDelay = 5000;
            alertButton1.Image = global::Health.Front.Base.Properties.Resource.inbox_32;
            alertButton1.ImageDown = global::Health.Front.Base.Properties.Resource.inbox_back_32;
            alertButton1.Name = "alertButton1";
            this.alertControl1.Buttons.Add(alertButton1);
            // 
            // FormBaseNotify
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(866, 474);
            this.LookAndFeel.UseWindowsXPTheme = true;
            this.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
            this.Name = "FormBaseNotify";
            this.Padding = new System.Windows.Forms.Padding(3, 5, 3, 5);
            this.Text = "";
            this.Activated += new System.EventHandler(this.frmBaseNotify_Activated);
            this.Load += new System.EventHandler(this.frmBaseNotify_Load);
            this.Resize += new System.EventHandler(this.frmBaseNotify_Resize);
            this.ResumeLayout(false);

        }
Example #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(FormBaseNotify));
     this.notifyIcon1   = new System.Windows.Forms.NotifyIcon();
     this.alertControl1 = new DevExpress.XtraBars.Alerter.AlertControl();
     this.SuspendLayout();
     //
     // notifyIcon1
     //
     this.notifyIcon1.Visible      = true;
     this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
     //
     // alertControl1
     //
     this.alertControl1.AutoFormDelay = 5000;
     alertButton1.Image     = global::Fwk.UI.Properties.Resources.inbox_32;
     alertButton1.ImageDown = global::Fwk.UI.Properties.Resources.inbox_back_32;
     alertButton1.Name      = "alertButton1";
     this.alertControl1.Buttons.Add(alertButton1);
     //
     // FormBaseNotify
     //
     this.AutoScaleDimensions           = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode                 = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize                    = new System.Drawing.Size(866, 474);
     this.LookAndFeel.UseWindowsXPTheme = true;
     this.Margin     = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.Name       = "FormBaseNotify";
     this.Padding    = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.Text       = "";
     this.Activated += new System.EventHandler(this.frmBaseNotify_Activated);
     this.Load      += new System.EventHandler(this.frmBaseNotify_Load);
     this.Resize    += new System.EventHandler(this.frmBaseNotify_Resize);
     this.ResumeLayout(false);
 }
Example #7
0
 /// <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();
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     DevExpress.XtraBars.Alerter.AlertButton        alertButton2 = new DevExpress.XtraBars.Alerter.AlertButton();
     DevExpress.XtraBars.Alerter.AlertButton        alertButton3 = new DevExpress.XtraBars.Alerter.AlertButton();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(Form9));
     this.barManager1          = new DevExpress.XtraBars.BarManager(this.components);
     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.alertControl1        = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     this.popupMenu1           = new DevExpress.XtraBars.PopupMenu(this.components);
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.button1        = new System.Windows.Forms.Button();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form   = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.barButtonItem1,
         this.barButtonItem2,
         this.barButtonItem3
     });
     this.barManager1.MaxItemId = 3;
     //
     // 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(416, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 235);
     this.barDockControlBottom.Size             = new System.Drawing.Size(416, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 235);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(416, 0);
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 235);
     //
     // alertControl1
     //
     alertButton1.Hint       = "Open";
     alertButton1.ImageIndex = 0;
     alertButton1.Name       = "alertButton1";
     alertButton2.Hint       = "Save";
     alertButton2.ImageIndex = 1;
     alertButton2.Name       = "alertButton2";
     alertButton3.Hint       = "Task";
     alertButton3.ImageIndex = 2;
     alertButton3.Name       = "alertButton3";
     this.alertControl1.Buttons.Add(alertButton1);
     this.alertControl1.Buttons.Add(alertButton2);
     this.alertControl1.Buttons.Add(alertButton3);
     this.alertControl1.Images       = this.imageList1;
     this.alertControl1.PopupMenu    = this.popupMenu1;
     this.alertControl1.ButtonClick += new DevExpress.XtraBars.Alerter.AlertButtonClickEventHandler(this.alertControl1_ButtonClick);
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2),
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3)
     });
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name    = "popupMenu1";
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "FileOpen.png");
     this.imageList1.Images.SetKeyName(1, "FileSave.png");
     this.imageList1.Images.SetKeyName(2, "NewTask.png");
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(157, 89);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 4;
     this.button1.Text     = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption    = "Open";
     this.barButtonItem1.Id         = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name       = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption    = "Save";
     this.barButtonItem2.Id         = 1;
     this.barButtonItem2.ImageIndex = 1;
     this.barButtonItem2.Name       = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption    = "Task";
     this.barButtonItem3.Id         = 2;
     this.barButtonItem3.ImageIndex = 2;
     this.barButtonItem3.Name       = "barButtonItem3";
     //
     // Form9
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(416, 235);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "Form9";
     this.Text = "Form9";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     this.ResumeLayout(false);
 }
Example #8
0
 /// <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();
     DevExpress.XtraBars.Alerter.AlertButton alertButton3 = new DevExpress.XtraBars.Alerter.AlertButton();
     DevExpress.XtraBars.Alerter.AlertButton alertButton4 = new DevExpress.XtraBars.Alerter.AlertButton();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.menuStrip1          = new System.Windows.Forms.MenuStrip();
     this.系统ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.登录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.测试ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.alertControl1       = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font            = new System.Drawing.Font("Tahoma", 42F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Appearance.Options.UseFont = true;
     this.labelControl1.Location = new System.Drawing.Point(121, 83);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(224, 68);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text     = "欢迎使用";
     //
     // menuStrip1
     //
     this.menuStrip1.Font = new System.Drawing.Font("Microsoft YaHei UI", 14F);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.系统ToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(983, 33);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // 系统ToolStripMenuItem
     //
     this.系统ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.登录ToolStripMenuItem
     });
     this.系统ToolStripMenuItem.Image = global::StrayRabbit.MMS.WindowsForm.Properties.Resources.ok;
     this.系统ToolStripMenuItem.Name  = "系统ToolStripMenuItem";
     this.系统ToolStripMenuItem.Size  = new System.Drawing.Size(78, 29);
     this.系统ToolStripMenuItem.Text  = "系统";
     //
     // 登录ToolStripMenuItem
     //
     this.登录ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.测试ToolStripMenuItem
     });
     this.登录ToolStripMenuItem.Name = "登录ToolStripMenuItem";
     this.登录ToolStripMenuItem.Size = new System.Drawing.Size(180, 30);
     this.登录ToolStripMenuItem.Text = "登录";
     //
     // 测试ToolStripMenuItem
     //
     this.测试ToolStripMenuItem.Name   = "测试ToolStripMenuItem";
     this.测试ToolStripMenuItem.Size   = new System.Drawing.Size(180, 30);
     this.测试ToolStripMenuItem.Text   = "测试";
     this.测试ToolStripMenuItem.Click += new System.EventHandler(this.测试ToolStripMenuItem_Click);
     //
     // alertControl1
     //
     alertButton3.Name = "确认";
     alertButton4.Name = "取消";
     this.alertControl1.Buttons.Add(alertButton3);
     this.alertControl1.Buttons.Add(alertButton4);
     //
     // welcome
     //
     this.AutoScaleDimensions        = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode              = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayoutStore = System.Windows.Forms.ImageLayout.Tile;
     this.BackgroundImageStore       = global::StrayRabbit.MMS.WindowsForm.Properties.Resources.baby;
     this.ClientSize = new System.Drawing.Size(983, 544);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "welcome";
     this.Text          = "welcome";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(XtraForm1));
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     this.navBarControl1       = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1         = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem1          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2         = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem2          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem3          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem4          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem5          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem6          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem7          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem8          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup3         = new DevExpress.XtraNavBar.NavBarGroup();
     this.imageList1           = new System.Windows.Forms.ImageList();
     this.button1              = new System.Windows.Forms.Button();
     this.popupMenu1           = new DevExpress.XtraBars.PopupMenu();
     this.barButtonItem1       = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2       = new DevExpress.XtraBars.BarButtonItem();
     this.barManager1          = new DevExpress.XtraBars.BarManager();
     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.button2              = new System.Windows.Forms.Button();
     this.alertControl1        = new DevExpress.XtraBars.Alerter.AlertControl();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.SuspendLayout();
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.Appearance.ItemActive.ForeColor                = System.Drawing.Color.DarkRed;
     this.navBarControl1.Appearance.ItemActive.Options.UseForeColor     = true;
     this.navBarControl1.Appearance.ItemHotTracked.ForeColor            = System.Drawing.Color.SeaGreen;
     this.navBarControl1.Appearance.ItemHotTracked.Options.UseForeColor = true;
     this.navBarControl1.Appearance.ItemPressed.BorderColor             = System.Drawing.Color.Green;
     this.navBarControl1.Appearance.ItemPressed.ForeColor               = System.Drawing.Color.DarkViolet;
     this.navBarControl1.Appearance.ItemPressed.Options.UseBorderColor  = true;
     this.navBarControl1.Appearance.ItemPressed.Options.UseForeColor    = true;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup1,
         this.navBarGroup2,
         this.navBarGroup3
     });
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.navBarItem1,
         this.navBarItem2,
         this.navBarItem3,
         this.navBarItem4,
         this.navBarItem5,
         this.navBarItem6,
         this.navBarItem7,
         this.navBarItem8
     });
     this.navBarControl1.LargeImages       = this.imageList1;
     this.navBarControl1.LinkInterval      = 10;
     this.navBarControl1.LinkSelectionMode = DevExpress.XtraNavBar.LinkSelectionModeType.OneInControl;
     this.navBarControl1.Location          = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 230;
     this.navBarControl1.Size            = new System.Drawing.Size(230, 447);
     this.navBarControl1.TabIndex        = 0;
     this.navBarControl1.Text            = "navBarControl1";
     this.navBarControl1.CustomDrawLink += new DevExpress.XtraNavBar.ViewInfo.CustomDrawNavBarElementEventHandler(this.navBarControl1_CustomDrawLink);
     this.navBarControl1.LinkPressed    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarControl1_LinkPressed);
     this.navBarControl1.LinkClicked    += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarControl1_LinkClicked);
     this.navBarControl1.MouseDown      += new System.Windows.Forms.MouseEventHandler(this.navBarControl1_MouseDown);
     //
     // navBarGroup1
     //
     this.navBarGroup1.Appearance.Font            = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.navBarGroup1.Appearance.Options.UseFont = true;
     this.navBarGroup1.Caption    = "所有人";
     this.navBarGroup1.Expanded   = true;
     this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem1)
     });
     this.navBarGroup1.LargeImageIndex = 0;
     this.navBarGroup1.Name            = "navBarGroup1";
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "所有人";
     this.navBarItem1.Name    = "navBarItem1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Appearance.Font            = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.navBarGroup2.Appearance.Options.UseFont = true;
     this.navBarGroup2.Caption    = "群组";
     this.navBarGroup2.Expanded   = true;
     this.navBarGroup2.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem2),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem3),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem4),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem5),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem6),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem7),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem8)
     });
     this.navBarGroup2.LargeImageIndex   = 1;
     this.navBarGroup2.Name              = "navBarGroup2";
     this.navBarGroup2.SelectedLinkIndex = 11;
     //
     // navBarItem2
     //
     this.navBarItem2.AppearanceHotTracked.BorderColor            = System.Drawing.Color.LightGreen;
     this.navBarItem2.AppearanceHotTracked.Options.UseBorderColor = true;
     this.navBarItem2.AppearancePressed.BorderColor            = System.Drawing.Color.Blue;
     this.navBarItem2.AppearancePressed.Options.UseBorderColor = true;
     this.navBarItem2.Caption = "群组1 【1】";
     this.navBarItem2.Hint    = "213123123";
     this.navBarItem2.Name    = "navBarItem2";
     //
     // navBarItem3
     //
     this.navBarItem3.Caption = "navBarItem3";
     this.navBarItem3.Name    = "navBarItem3";
     //
     // navBarItem4
     //
     this.navBarItem4.Caption = "navBarItem4";
     this.navBarItem4.Name    = "navBarItem4";
     //
     // navBarItem5
     //
     this.navBarItem5.Caption = "navBarItem5";
     this.navBarItem5.Name    = "navBarItem5";
     //
     // navBarItem6
     //
     this.navBarItem6.Caption = "navBarItem6";
     this.navBarItem6.Name    = "navBarItem6";
     //
     // navBarItem7
     //
     this.navBarItem7.Caption = "navBarItem7";
     this.navBarItem7.Name    = "navBarItem7";
     //
     // navBarItem8
     //
     this.navBarItem8.Caption = "navBarItem8";
     this.navBarItem8.Name    = "navBarItem8";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Appearance.Font            = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.navBarGroup3.Appearance.Options.UseFont = true;
     this.navBarGroup3.Caption         = "私聊";
     this.navBarGroup3.LargeImageIndex = 2;
     this.navBarGroup3.Name            = "navBarGroup3";
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "所有人.png");
     this.imageList1.Images.SetKeyName(1, "群组.png");
     this.imageList1.Images.SetKeyName(2, "在线学生.png");
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(321, 55);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 1;
     this.button1.Text     = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2)
     });
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name    = "popupMenu1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption                 = "aaaa";
     this.barButtonItem1.Id                      = 0;
     this.barButtonItem1.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.ImageOptions.Image")));
     this.barButtonItem1.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.ImageOptions.LargeImage")));
     this.barButtonItem1.Name                    = "barButtonItem1";
     this.barButtonItem1.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "bbbbb";
     this.barButtonItem2.Id      = 1;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.barButtonItem1,
         this.barButtonItem2
     });
     this.barManager1.MaxItemId = 2;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Manager          = this.barManager1;
     this.barDockControlTop.Size             = new System.Drawing.Size(477, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 447);
     this.barDockControlBottom.Manager          = this.barManager1;
     this.barDockControlBottom.Size             = new System.Drawing.Size(477, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Manager          = this.barManager1;
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 447);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(477, 0);
     this.barDockControlRight.Manager          = this.barManager1;
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 447);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(293, 159);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 6;
     this.button2.Text     = "button2";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // alertControl1
     //
     this.alertControl1.AppearanceCaption.BackColor            = System.Drawing.Color.Red;
     this.alertControl1.AppearanceCaption.Options.UseBackColor = true;
     this.alertControl1.AppearanceText.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.alertControl1.AppearanceText.Options.UseBackColor = true;
     alertButton1.Image = global::DXApplication1.Properties.Resources.open_16x16;
     alertButton1.Name  = "openBtn";
     this.alertControl1.Buttons.Add(alertButton1);
     this.alertControl1.FormDisplaySpeed = DevExpress.XtraBars.Alerter.AlertFormDisplaySpeed.Fast;
     this.alertControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.alertControl1.ShowPinButton = false;
     //
     // XtraForm1
     //
     this.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions             = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize    = new System.Drawing.Size(477, 447);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.navBarControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.LookAndFeel.SkinName = "Office 2013 Light Gray";
     this.Name  = "XtraForm1";
     this.Text  = "XtraForm1";
     this.Load += new System.EventHandler(this.XtraForm1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #10
0
 /// <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();
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(Container));
     this.bWorker_Save         = new System.ComponentModel.BackgroundWorker();
     this.dManagerObject       = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.imageCollection1     = new DevExpress.Utils.ImageCollection(this.components);
     this.panelContainer1      = new DevExpress.XtraBars.Docking.DockPanel();
     this.dp_Project           = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.dp_Function          = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.timer1        = new System.Windows.Forms.Timer(this.components);
     this.alertControl1 = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.dManagerObject)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     this.panelContainer1.SuspendLayout();
     this.dp_Project.SuspendLayout();
     this.dp_Function.SuspendLayout();
     this.SuspendLayout();
     //
     // bWorker_Save
     //
     this.bWorker_Save.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.bWorker_Save_DoWork);
     this.bWorker_Save.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bWorker_Save_RunWorkerCompleted);
     this.bWorker_Save.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.bWorker_Save_ProgressChanged);
     //
     // dManagerObject
     //
     this.dManagerObject.DockingOptions.ShowCaptionImage = true;
     this.dManagerObject.DockingOptions.ShowCloseButton  = false;
     this.dManagerObject.Form   = this;
     this.dManagerObject.Images = this.imageCollection1;
     this.dManagerObject.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
         this.panelContainer1
     });
     this.dManagerObject.TopZIndexControls.AddRange(new string[] {
         "DevExpress.XtraBars.BarDockControl",
         "DevExpress.XtraBars.StandaloneBarDockControl",
         "System.Windows.Forms.StatusBar",
         "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
         "DevExpress.XtraBars.Ribbon.RibbonControl"
     });
     //
     // imageCollection1
     //
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.Images.SetKeyName(0, "项目清单.png");
     this.imageCollection1.Images.SetKeyName(1, "功能列表.png");
     //
     // panelContainer1
     //
     this.panelContainer1.Appearance.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(245)))), ((int)(((byte)(241)))));
     this.panelContainer1.Appearance.Options.UseBackColor = true;
     this.panelContainer1.Controls.Add(this.dp_Project);
     this.panelContainer1.Controls.Add(this.dp_Function);
     this.panelContainer1.Dock         = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.panelContainer1.ID           = new System.Guid("8d8d82c1-7c54-4afe-ab0d-6df85a7a6969");
     this.panelContainer1.Location     = new System.Drawing.Point(483, 0);
     this.panelContainer1.Name         = "panelContainer1";
     this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer1.Size         = new System.Drawing.Size(200, 408);
     this.panelContainer1.Text         = "panelContainer1";
     //
     // dp_Project
     //
     this.dp_Project.Appearance.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(245)))), ((int)(((byte)(241)))));
     this.dp_Project.Appearance.Options.UseBackColor = true;
     this.dp_Project.Controls.Add(this.dockPanel1_Container);
     this.dp_Project.Cursor                  = System.Windows.Forms.Cursors.Hand;
     this.dp_Project.Dock                    = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.dp_Project.FloatVertical           = true;
     this.dp_Project.ID                      = new System.Guid("0bec1d52-2064-4963-b690-cd6d31dae7c4");
     this.dp_Project.ImageIndex              = 0;
     this.dp_Project.Location                = new System.Drawing.Point(0, 0);
     this.dp_Project.Name                    = "dp_Project";
     this.dp_Project.Options.ShowCloseButton = false;
     this.dp_Project.OriginalSize            = new System.Drawing.Size(200, 204);
     this.dp_Project.Size                    = new System.Drawing.Size(200, 204);
     this.dp_Project.Text                    = "项目列表";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name     = "dockPanel1_Container";
     this.dockPanel1_Container.Size     = new System.Drawing.Size(194, 176);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // dp_Function
     //
     this.dp_Function.Appearance.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(245)))), ((int)(((byte)(241)))));
     this.dp_Function.Appearance.Options.UseBackColor = true;
     this.dp_Function.Controls.Add(this.dockPanel2_Container);
     this.dp_Function.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.dp_Function.Dock       = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.dp_Function.ID         = new System.Guid("23d463e3-bbbc-4a5a-8e84-ce3c968ee2cd");
     this.dp_Function.ImageIndex = 1;
     this.dp_Function.Location   = new System.Drawing.Point(0, 204);
     this.dp_Function.Name       = "dp_Function";
     this.dp_Function.Options.ShowCloseButton = false;
     this.dp_Function.OriginalSize            = new System.Drawing.Size(200, 200);
     this.dp_Function.Size = new System.Drawing.Size(200, 204);
     this.dp_Function.Text = "功能区域";
     //
     // dockPanel2_Container
     //
     this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel2_Container.Name     = "dockPanel2_Container";
     this.dockPanel2_Container.Size     = new System.Drawing.Size(194, 176);
     this.dockPanel2_Container.TabIndex = 0;
     //
     // timer1
     //
     this.timer1.Interval = 5000;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // alertControl1
     //
     alertButton1.Name = "alertButton1";
     this.alertControl1.Buttons.Add(alertButton1);
     this.alertControl1.AlertClick  += new DevExpress.XtraBars.Alerter.AlertClickEventHandler(this.alertControl1_AlertClick);
     this.alertControl1.ButtonClick += new DevExpress.XtraBars.Alerter.AlertButtonClickEventHandler(this.alertControl1_ButtonClick);
     //
     // Container
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(683, 408);
     this.Controls.Add(this.panelContainer1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "Container";
     this.Text  = "Container";
     this.Load += new System.EventHandler(this.Container_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dManagerObject)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     this.panelContainer1.ResumeLayout(false);
     this.dp_Project.ResumeLayout(false);
     this.dp_Function.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #11
0
 /// <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(FrmPrincipal));
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     this.ribbonControl1        = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barButtonItem1        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3        = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4        = new DevExpress.XtraBars.BarButtonItem();
     this.btnAlunoTreinamento   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6        = new DevExpress.XtraBars.BarButtonItem();
     this.btnAgenda             = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.controleAlertas       = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.barButtonItem1,
         this.barButtonItem2,
         this.barButtonItem3,
         this.barButtonItem4,
         this.btnAlunoTreinamento,
         this.barButtonItem6,
         this.btnAgenda
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 8;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1
     });
     this.ribbonControl1.ShowToolbarCustomizeItem = false;
     this.ribbonControl1.Size = new System.Drawing.Size(626, 117);
     this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
     this.ribbonControl1.ToolbarLocation           = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption    = "Empresa";
     this.barButtonItem1.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id         = 1;
     this.barButtonItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.LargeGlyph")));
     this.barButtonItem1.Name       = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption    = "Colaborador";
     this.barButtonItem2.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
     this.barButtonItem2.Id         = 2;
     this.barButtonItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.LargeGlyph")));
     this.barButtonItem2.Name       = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption    = "Palestrante";
     this.barButtonItem3.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.Glyph")));
     this.barButtonItem3.Id         = 3;
     this.barButtonItem3.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.LargeGlyph")));
     this.barButtonItem3.Name       = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption    = "Treinamentos";
     this.barButtonItem4.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.Glyph")));
     this.barButtonItem4.Id         = 4;
     this.barButtonItem4.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.LargeGlyph")));
     this.barButtonItem4.Name       = "barButtonItem4";
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
     //
     // btnAlunoTreinamento
     //
     this.btnAlunoTreinamento.Caption    = "Lista de Presença";
     this.btnAlunoTreinamento.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnAlunoTreinamento.Glyph")));
     this.btnAlunoTreinamento.Id         = 5;
     this.btnAlunoTreinamento.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAlunoTreinamento.LargeGlyph")));
     this.btnAlunoTreinamento.Name       = "btnAlunoTreinamento";
     this.btnAlunoTreinamento.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption    = "Relatório";
     this.barButtonItem6.Glyph      = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.Glyph")));
     this.barButtonItem6.Id         = 6;
     this.barButtonItem6.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.LargeGlyph")));
     this.barButtonItem6.Name       = "barButtonItem6";
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // btnAgenda
     //
     this.btnAgenda.Caption    = "Agenda";
     this.btnAgenda.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnAgenda.Glyph")));
     this.btnAgenda.Id         = 7;
     this.btnAgenda.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAgenda.LargeGlyph")));
     this.btnAgenda.Name       = "btnAgenda";
     this.btnAgenda.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnAgenda_ItemClick);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup2
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Menu";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem3);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem4);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnAlunoTreinamento);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnAgenda);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Cadastros";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem6);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Relatório";
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabbedMdiManager1.MdiParent = this;
     //
     // controleAlertas
     //
     this.controleAlertas.AllowHtmlText = true;
     alertButton1.Name = "alertButton1";
     this.controleAlertas.Buttons.Add(alertButton1);
     //
     // FrmPrincipal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(626, 323);
     this.Controls.Add(this.ribbonControl1);
     this.IsMdiContainer = true;
     this.Name           = "FrmPrincipal";
     this.Text           = "Principal";
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(ClientMainForm));
     DevExpress.XtraBars.Alerter.AlertButton        alertButton2 = new DevExpress.XtraBars.Alerter.AlertButton();
     this.ribbonControl1      = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.bsItem              = new DevExpress.XtraBars.BarStaticItem();
     this.btnLoginUser        = new DevExpress.XtraBars.BarButtonItem();
     this.btnChat             = new DevExpress.XtraBars.BarButtonItem();
     this.barDateTime         = new DevExpress.XtraBars.BarStaticItem();
     this.ribbonStatusBar1    = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.xtraTabControl1     = new DevExpress.XtraTab.XtraTabControl();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.ribbonLogoHelper1   = new PaCSClientMain.Tools.RibbonLogoHelper();
     this.alertControl1       = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     this.timer1              = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.AllowKeyTips          = false;
     this.ribbonControl1.ColorScheme           = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Blue;
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.bsItem,
         this.btnLoginUser,
         this.btnChat,
         this.barDateTime
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 26;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.OptionsCustomizationForm.FormIcon = ((System.Drawing.Icon)(resources.GetObject("resource.FormIcon")));
     this.ribbonControl1.RibbonStyle              = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.ribbonControl1.ShowApplicationButton    = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.True;
     this.ribbonControl1.ShowToolbarCustomizeItem = false;
     this.ribbonControl1.Size      = new System.Drawing.Size(707, 55);
     this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
     this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
     this.ribbonControl1.ToolbarLocation           = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // bsItem
     //
     this.bsItem.Caption       = "当前用户:";
     this.bsItem.Id            = 9;
     this.bsItem.Name          = "bsItem";
     this.bsItem.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // btnLoginUser
     //
     this.btnLoginUser.Id         = 15;
     this.btnLoginUser.Name       = "btnLoginUser";
     this.btnLoginUser.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLoginUser_ItemClick);
     //
     // btnChat
     //
     this.btnChat.Alignment   = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.btnChat.Caption     = "联系管理员";
     this.btnChat.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnChat.Glyph")));
     this.btnChat.Id          = 22;
     this.btnChat.LargeGlyph  = ((System.Drawing.Image)(resources.GetObject("btnChat.LargeGlyph")));
     this.btnChat.Name        = "btnChat";
     this.btnChat.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                                                                                | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnChat.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnChat_ItemClick);
     //
     // barDateTime
     //
     this.barDateTime.Id            = 25;
     this.barDateTime.Name          = "barDateTime";
     this.barDateTime.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.bsItem);
     this.ribbonStatusBar1.ItemLinks.Add(this.btnLoginUser);
     this.ribbonStatusBar1.ItemLinks.Add(this.btnChat);
     this.ribbonStatusBar1.ItemLinks.Add(this.barDateTime);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 524);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl1;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(707, 27);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Appearance.ForeColor            = System.Drawing.Color.Red;
     this.xtraTabControl1.Appearance.Options.UseForeColor = true;
     this.xtraTabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderButtons = ((DevExpress.XtraTab.TabButtons)((((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
                                                                             | DevExpress.XtraTab.TabButtons.Close)
                                                                            | DevExpress.XtraTab.TabButtons.Default)));
     this.xtraTabControl1.Location             = new System.Drawing.Point(0, 55);
     this.xtraTabControl1.LookAndFeel.SkinName = "Office 2010 Silver";
     this.xtraTabControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControl1.Name              = "xtraTabControl1";
     this.xtraTabControl1.Padding           = new System.Windows.Forms.Padding(3);
     this.xtraTabControl1.Size              = new System.Drawing.Size(707, 469);
     this.xtraTabControl1.TabIndex          = 2;
     this.xtraTabControl1.CloseButtonClick += new System.EventHandler(this.xtraTabControl1_CloseButtonClick);
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2013 Light Gray";
     //
     // ribbonLogoHelper1
     //
     this.ribbonLogoHelper1.Image         = ((System.Drawing.Image)(resources.GetObject("ribbonLogoHelper1.Image")));
     this.ribbonLogoHelper1.RibbonControl = this.ribbonControl1;
     //
     // alertControl1
     //
     this.alertControl1.AppearanceCaption.ForeColor            = System.Drawing.Color.Blue;
     this.alertControl1.AppearanceCaption.Options.UseForeColor = true;
     this.alertControl1.AutoFormDelay = 10000;
     alertButton2.Hint  = "复制消息文本";
     alertButton2.Image = ((System.Drawing.Image)(resources.GetObject("alertButton2.Image")));
     alertButton2.Name  = "copyInfo";
     this.alertControl1.Buttons.Add(alertButton2);
     this.alertControl1.FormMaxCount         = 3;
     this.alertControl1.LookAndFeel.SkinName = "Visual Studio 2013 Light";
     this.alertControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.alertControl1.ButtonClick += new DevExpress.XtraBars.Alerter.AlertButtonClickEventHandler(this.alertControl1_ButtonClick);
     //
     // timer1
     //
     this.timer1.Enabled  = true;
     this.timer1.Interval = 1000;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // ClientMainForm
     //
     this.AllowFormGlass                  = DevExpress.Utils.DefaultBoolean.True;
     this.Appearance.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions             = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize    = new System.Drawing.Size(707, 551);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl1);
     this.Icon         = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name         = "ClientMainForm";
     this.Ribbon       = this.ribbonControl1;
     this.StatusBar    = this.ribbonStatusBar1;
     this.WindowState  = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ClientMainForm_FormClosing);
     this.Load        += new System.EventHandler(this.ClientMainForm_Load);
     this.Shown       += new System.EventHandler(this.ClientMainForm_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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();
            DevExpress.XtraBars.Alerter.AlertButton alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
            DevExpress.XtraBars.Alerter.AlertButton alertButton2 = new DevExpress.XtraBars.Alerter.AlertButton();
            DevExpress.XtraBars.Alerter.AlertButton alertButton3 = new DevExpress.XtraBars.Alerter.AlertButton();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form9));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            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.alertControl1 = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.button1 = new System.Windows.Forms.Button();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            this.SuspendLayout();
            // 
            // barManager1
            // 
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.Form = this;
            this.barManager1.Images = this.imageList1;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItem3});
            this.barManager1.MaxItemId = 3;
            // 
            // 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(416, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 235);
            this.barDockControlBottom.Size = new System.Drawing.Size(416, 0);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 235);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(416, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 235);
            // 
            // alertControl1
            // 
            alertButton1.Hint = "Open";
            alertButton1.ImageIndex = 0;
            alertButton1.Name = "alertButton1";
            alertButton2.Hint = "Save";
            alertButton2.ImageIndex = 1;
            alertButton2.Name = "alertButton2";
            alertButton3.Hint = "Task";
            alertButton3.ImageIndex = 2;
            alertButton3.Name = "alertButton3";
            this.alertControl1.Buttons.Add(alertButton1);
            this.alertControl1.Buttons.Add(alertButton2);
            this.alertControl1.Buttons.Add(alertButton3);
            this.alertControl1.Images = this.imageList1;
            this.alertControl1.PopupMenu = this.popupMenu1;
            this.alertControl1.ButtonClick += new DevExpress.XtraBars.Alerter.AlertButtonClickEventHandler(this.alertControl1_ButtonClick);
            // 
            // popupMenu1
            // 
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "FileOpen.png");
            this.imageList1.Images.SetKeyName(1, "FileSave.png");
            this.imageList1.Images.SetKeyName(2, "NewTask.png");
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(157, 89);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 4;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "Open";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.ImageIndex = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "Save";
            this.barButtonItem2.Id = 1;
            this.barButtonItem2.ImageIndex = 1;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "Task";
            this.barButtonItem3.Id = 2;
            this.barButtonItem3.ImageIndex = 2;
            this.barButtonItem3.Name = "barButtonItem3";
            // 
            // Form9
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(416, 235);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "Form9";
            this.Text = "Form9";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            this.ResumeLayout(false);

        }
        /// <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();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraBars.Alerter.AlertButton alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
            DevExpress.XtraBars.Alerter.AlertButton alertButton2 = new DevExpress.XtraBars.Alerter.AlertButton();
            DevExpress.XtraBars.Alerter.AlertButton alertButton3 = new DevExpress.XtraBars.Alerter.AlertButton();
            DevExpress.XtraBars.Alerter.AlertButton alertButton4 = new DevExpress.XtraBars.Alerter.AlertButton();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MessagesXtraForm));
            this.repositoryItemImageComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.gridControl1 = new DevExpress.XtraGrid.GridControl();
            this.messagesGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.repositoryItemImageComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.alertControl = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
            this.headersImageList = new System.Windows.Forms.ImageList(this.components);
            this.gridImageList = new System.Windows.Forms.ImageList(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.messagesGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).BeginInit();
            this.SuspendLayout();
            // 
            // repositoryItemImageComboBox4
            // 
            this.repositoryItemImageComboBox4.AutoHeight = false;
            this.repositoryItemImageComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox4.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.repositoryItemImageComboBox4.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Flag", 0, 5),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Empty", 1, -1)});
            this.repositoryItemImageComboBox4.Name = "repositoryItemImageComboBox4";
            // 
            // gridColumn2
            // 
            this.gridColumn2.Caption = "Read";
            this.gridColumn2.ColumnEdit = this.repositoryItemImageComboBox2;
            this.gridColumn2.FieldName = "Read";
            this.gridColumn2.ImageIndex = 1;
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowEdit = false;
            this.gridColumn2.OptionsColumn.AllowSize = false;
            this.gridColumn2.OptionsColumn.FixedWidth = true;
            this.gridColumn2.OptionsColumn.ShowCaption = false;
            this.gridColumn2.ToolTip = "Icon";
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 1;
            this.gridColumn2.Width = 44;
            // 
            // repositoryItemImageComboBox2
            // 
            this.repositoryItemImageComboBox2.AutoHeight = false;
            this.repositoryItemImageComboBox2.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.repositoryItemImageComboBox2.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Unread", 0, 3),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Read", 1, 2)});
            this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
            this.repositoryItemImageComboBox2.SmallImages = this.gridImageList;
            // 
            // gridColumn1
            // 
            this.gridColumn1.Caption = "Priority";
            this.gridColumn1.ColumnEdit = this.repositoryItemImageComboBox1;
            this.gridColumn1.FieldName = "Priority";
            this.gridColumn1.ImageIndex = 0;
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowSize = false;
            this.gridColumn1.OptionsColumn.FixedWidth = true;
            this.gridColumn1.OptionsColumn.ShowCaption = false;
            this.gridColumn1.ToolTip = "Importance";
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 44;
            // 
            // repositoryItemImageComboBox1
            // 
            this.repositoryItemImageComboBox1.AutoHeight = false;
            this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Low", 0, 0),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Medium", 1, -1),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("High", 2, 1)});
            this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
            this.repositoryItemImageComboBox1.SmallImages = this.gridImageList;
            // 
            // gridControl1
            // 
            this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl1.Location = new System.Drawing.Point(0, 0);
            this.gridControl1.MainView = this.messagesGridView;
            this.gridControl1.Name = "gridControl1";
            this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemDateEdit1,
            this.repositoryItemImageComboBox1,
            this.repositoryItemImageComboBox2,
            this.repositoryItemImageComboBox3,
            this.repositoryItemImageComboBox4});
            this.gridControl1.Size = new System.Drawing.Size(530, 431);
            this.gridControl1.TabIndex = 4;
            this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.messagesGridView});
            // 
            // messagesGridView
            // 
            this.messagesGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColumn2,
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn6,
            this.gridColumn7,
            this.gridColumn8});
            styleFormatCondition1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            styleFormatCondition1.Appearance.Options.UseFont = true;
            styleFormatCondition1.ApplyToRow = true;
            styleFormatCondition1.Column = this.gridColumn2;
            styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
            styleFormatCondition1.Value1 = 0;
            this.messagesGridView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
            styleFormatCondition1});
            this.messagesGridView.GridControl = this.gridControl1;
            this.messagesGridView.GroupCount = 1;
            this.messagesGridView.GroupFormat = "[#image]{1} {2}";
            this.messagesGridView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Count, "Subject", null, "({0} items)")});
            this.messagesGridView.Images = this.headersImageList;
            this.messagesGridView.Name = "messagesGridView";
            this.messagesGridView.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office2003;
            this.messagesGridView.OptionsView.ShowGroupedColumns = true;
            this.messagesGridView.OptionsView.ShowGroupPanel = false;
            this.messagesGridView.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
            this.messagesGridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn8, DevExpress.Data.ColumnSortOrder.Descending)});
            // 
            // repositoryItemImageComboBox3
            // 
            this.repositoryItemImageComboBox3.AutoHeight = false;
            this.repositoryItemImageComboBox3.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.repositoryItemImageComboBox3.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Attachment", 0, 4),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Empty", 1, -1)});
            this.repositoryItemImageComboBox3.Name = "repositoryItemImageComboBox3";
            // 
            // gridColumn4
            // 
            this.gridColumn4.Caption = "Subject";
            this.gridColumn4.FieldName = "Subject";
            this.gridColumn4.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Alphabetical;
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 2;
            this.gridColumn4.Width = 332;
            // 
            // gridColumn5
            // 
            this.gridColumn5.Caption = "From";
            this.gridColumn5.FieldName = "From";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 3;
            this.gridColumn5.Width = 99;
            // 
            // gridColumn6
            // 
            this.gridColumn6.Caption = "To";
            this.gridColumn6.FieldName = "To";
            this.gridColumn6.Name = "gridColumn6";
            // 
            // gridColumn7
            // 
            this.gridColumn7.Caption = "Sent";
            this.gridColumn7.ColumnEdit = this.repositoryItemDateEdit1;
            this.gridColumn7.FieldName = "Sent";
            this.gridColumn7.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.DateRange;
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.Width = 126;
            // 
            // repositoryItemDateEdit1
            // 
            this.repositoryItemDateEdit1.AutoHeight = false;
            this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemDateEdit1.DisplayFormat.FormatString = "g";
            this.repositoryItemDateEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.repositoryItemDateEdit1.Mask.EditMask = "g";
            this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
            this.repositoryItemDateEdit1.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            // 
            // gridColumn8
            // 
            this.gridColumn8.Caption = "Received";
            this.gridColumn8.ColumnEdit = this.repositoryItemDateEdit1;
            this.gridColumn8.FieldName = "Received";
            this.gridColumn8.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.DateRange;
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 4;
            this.gridColumn8.Width = 149;
            // 
            // alertControl
            // 
            alertButton1.Hint = "Flag Item";
            alertButton1.ImageIndex = 0;
            alertButton1.Name = "Flag";
            alertButton1.Style = DevExpress.XtraBars.Alerter.AlertButtonStyle.CheckButton;
            alertButton2.Hint = "Mark as Read";
            alertButton2.ImageDownIndex = 1;
            alertButton2.ImageIndex = 2;
            alertButton2.Name = "Read";
            alertButton2.Style = DevExpress.XtraBars.Alerter.AlertButtonStyle.CheckButton;
            alertButton3.Hint = "Open Attachment";
            alertButton3.Name = "Attachment";
            alertButton4.Hint = "Delete Item";
            alertButton4.Name = "Delete";
            this.alertControl.Buttons.Add(alertButton1);
            this.alertControl.Buttons.Add(alertButton2);
            this.alertControl.Buttons.Add(alertButton3);
            this.alertControl.Buttons.Add(alertButton4);
            // 
            // headersImageList
            // 
            this.headersImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("headersImageList.ImageStream")));
            this.headersImageList.TransparentColor = System.Drawing.Color.Magenta;
            this.headersImageList.Images.SetKeyName(0, "");
            this.headersImageList.Images.SetKeyName(1, "");
            // 
            // gridImageList
            // 
            this.gridImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("gridImageList.ImageStream")));
            this.gridImageList.TransparentColor = System.Drawing.Color.Magenta;
            this.gridImageList.Images.SetKeyName(0, "");
            this.gridImageList.Images.SetKeyName(1, "");
            this.gridImageList.Images.SetKeyName(2, "");
            this.gridImageList.Images.SetKeyName(3, "");
            this.gridImageList.Images.SetKeyName(4, "");
            this.gridImageList.Images.SetKeyName(5, "");
            // 
            // MessagesXtraForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(530, 431);
            this.Controls.Add(this.gridControl1);
            this.Name = "MessagesXtraForm";
            this.ShowIcon = false;
            this.Text = "Messages";
            this.Load += new System.EventHandler(this.MessagesXtraForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.messagesGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
            this.ResumeLayout(false);

        }
Example #15
0
 /// <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(ProgramacioncitaVisorFrmBackup));
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     this.sccPrincipal          = new DevExpress.XtraEditors.SplitContainerControl();
     this.sccPrincipalDerecho   = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControl1         = new DevExpress.XtraEditors.GroupControl();
     this.iCalendarioCita       = new DevExpress.XtraEditors.Controls.CalendarControl();
     this.groupControl2         = new DevExpress.XtraEditors.GroupControl();
     this.layoutControl1        = new DevExpress.XtraLayout.LayoutControl();
     this.iFiltroEspecialidad   = new DevExpress.XtraEditors.SearchLookUpEdit();
     this.searchLookUpEdit2View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.iFiltroMedico         = new DevExpress.XtraEditors.SearchLookUpEdit();
     this.searchLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.layoutControlGroup1   = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1    = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2    = new DevExpress.XtraLayout.LayoutControlItem();
     this.xtcCitas             = new DevExpress.XtraTab.XtraTabControl();
     this.tpCitas              = new DevExpress.XtraTab.XtraTabPage();
     this.gcCitas              = new DevExpress.XtraGrid.GridControl();
     this.gvCitas              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcId                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.hcHora               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.riTime               = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gcServicio           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMedico             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPaciente           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcEstado             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tpAdicionales        = new DevExpress.XtraTab.XtraTabPage();
     this.tpLog                = new DevExpress.XtraTab.XtraTabPage();
     this.sccEventosPrincipal  = new DevExpress.XtraEditors.SplitContainerControl();
     this.gcEventos            = new DevExpress.XtraEditors.GroupControl();
     this.rtxtConversation     = new DevExpress.XtraEditors.MemoEdit();
     this.bmCitas              = new DevExpress.XtraBars.BarManager(this.components);
     this.barCitas             = new DevExpress.XtraBars.Bar();
     this.btnVerEditarrCita    = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnularCita        = new DevExpress.XtraBars.BarButtonItem();
     this.btnVerPagos          = new DevExpress.XtraBars.BarButtonItem();
     this.btnActualizar        = new DevExpress.XtraBars.BarButtonItem();
     this.btnVerHistorial      = 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.btnSend              = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1        = new DevExpress.XtraEditors.LabelControl();
     this.txtMessage           = new DevExpress.XtraEditors.TextEdit();
     this.AlertControlCita     = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.sccPrincipal)).BeginInit();
     this.sccPrincipal.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.sccPrincipalDerecho)).BeginInit();
     this.sccPrincipalDerecho.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.iCalendarioCita.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.iFiltroEspecialidad.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit2View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iFiltroMedico.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtcCitas)).BeginInit();
     this.xtcCitas.SuspendLayout();
     this.tpCitas.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcCitas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCitas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riTime)).BeginInit();
     this.tpLog.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.sccEventosPrincipal)).BeginInit();
     this.sccEventosPrincipal.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcEventos)).BeginInit();
     this.gcEventos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rtxtConversation.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bmCitas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMessage.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // sccPrincipal
     //
     this.sccPrincipal.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.sccPrincipal.Location = new System.Drawing.Point(0, 31);
     this.sccPrincipal.Name     = "sccPrincipal";
     this.sccPrincipal.Panel1.Controls.Add(this.sccPrincipalDerecho);
     this.sccPrincipal.Panel1.Text = "PanelDerecho";
     this.sccPrincipal.Panel2.Controls.Add(this.xtcCitas);
     this.sccPrincipal.Panel2.Text      = "PanelGrid";
     this.sccPrincipal.Size             = new System.Drawing.Size(950, 529);
     this.sccPrincipal.SplitterPosition = 256;
     this.sccPrincipal.TabIndex         = 0;
     this.sccPrincipal.Text             = "splitContainerControl1";
     //
     // sccPrincipalDerecho
     //
     this.sccPrincipalDerecho.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.sccPrincipalDerecho.Horizontal = false;
     this.sccPrincipalDerecho.Location   = new System.Drawing.Point(0, 0);
     this.sccPrincipalDerecho.Name       = "sccPrincipalDerecho";
     this.sccPrincipalDerecho.Panel1.Controls.Add(this.groupControl1);
     this.sccPrincipalDerecho.Panel1.Text = "PanelCalendario";
     this.sccPrincipalDerecho.Panel2.Controls.Add(this.groupControl2);
     this.sccPrincipalDerecho.Panel2.Text      = "PanelPropiedades";
     this.sccPrincipalDerecho.Size             = new System.Drawing.Size(256, 529);
     this.sccPrincipalDerecho.SplitterPosition = 224;
     this.sccPrincipalDerecho.TabIndex         = 0;
     this.sccPrincipalDerecho.Text             = "splitContainerControl1";
     //
     // groupControl1
     //
     this.groupControl1.AutoSize     = true;
     this.groupControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.groupControl1.Controls.Add(this.iCalendarioCita);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(256, 224);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text     = "Calendario de citas";
     //
     // iCalendarioCita
     //
     this.iCalendarioCita.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.iCalendarioCita.Dock                      = System.Windows.Forms.DockStyle.Fill;
     this.iCalendarioCita.Location                  = new System.Drawing.Point(2, 20);
     this.iCalendarioCita.Name                      = "iCalendarioCita";
     this.iCalendarioCita.ShowMonthHeaders          = false;
     this.iCalendarioCita.ShowYearNavigationButtons = DevExpress.Utils.DefaultBoolean.False;
     this.iCalendarioCita.Size                      = new System.Drawing.Size(252, 202);
     this.iCalendarioCita.TabIndex                  = 0;
     this.iCalendarioCita.DateTimeChanged          += new System.EventHandler(this.iCalendarioCita_DateTimeChanged);
     //
     // groupControl2
     //
     this.groupControl2.AutoSize     = true;
     this.groupControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.groupControl2.Controls.Add(this.layoutControl1);
     this.groupControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(256, 300);
     this.groupControl2.TabIndex = 0;
     this.groupControl2.Text     = "Filtros";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.iFiltroEspecialidad);
     this.layoutControl1.Controls.Add(this.iFiltroMedico);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(2, 20);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(252, 278);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // iFiltroEspecialidad
     //
     this.iFiltroEspecialidad.Location = new System.Drawing.Point(12, 28);
     this.iFiltroEspecialidad.Name     = "iFiltroEspecialidad";
     this.iFiltroEspecialidad.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.iFiltroEspecialidad.Properties.View = this.searchLookUpEdit2View;
     this.iFiltroEspecialidad.Size            = new System.Drawing.Size(228, 20);
     this.iFiltroEspecialidad.StyleController = this.layoutControl1;
     this.iFiltroEspecialidad.TabIndex        = 5;
     //
     // searchLookUpEdit2View
     //
     this.searchLookUpEdit2View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.searchLookUpEdit2View.Name           = "searchLookUpEdit2View";
     this.searchLookUpEdit2View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.searchLookUpEdit2View.OptionsView.ShowGroupPanel = false;
     //
     // iFiltroMedico
     //
     this.iFiltroMedico.Location = new System.Drawing.Point(12, 68);
     this.iFiltroMedico.Name     = "iFiltroMedico";
     this.iFiltroMedico.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.iFiltroMedico.Properties.View = this.searchLookUpEdit1View;
     this.iFiltroMedico.Size            = new System.Drawing.Size(228, 20);
     this.iFiltroMedico.StyleController = this.layoutControl1;
     this.iFiltroMedico.TabIndex        = 4;
     //
     // searchLookUpEdit1View
     //
     this.searchLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.searchLookUpEdit1View.Name           = "searchLookUpEdit1View";
     this.searchLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.searchLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Size        = new System.Drawing.Size(252, 278);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control      = this.iFiltroMedico;
     this.layoutControlItem1.Location     = new System.Drawing.Point(0, 40);
     this.layoutControlItem1.Name         = "layoutControlItem1";
     this.layoutControlItem1.Size         = new System.Drawing.Size(232, 218);
     this.layoutControlItem1.Text         = "Medico";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Top;
     this.layoutControlItem1.TextSize     = new System.Drawing.Size(58, 13);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control      = this.iFiltroEspecialidad;
     this.layoutControlItem2.Location     = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name         = "layoutControlItem2";
     this.layoutControlItem2.Size         = new System.Drawing.Size(232, 40);
     this.layoutControlItem2.Text         = "Especialidad";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Top;
     this.layoutControlItem2.TextSize     = new System.Drawing.Size(58, 13);
     //
     // xtcCitas
     //
     this.xtcCitas.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.xtcCitas.Location        = new System.Drawing.Point(0, 0);
     this.xtcCitas.Name            = "xtcCitas";
     this.xtcCitas.SelectedTabPage = this.tpCitas;
     this.xtcCitas.Size            = new System.Drawing.Size(689, 529);
     this.xtcCitas.TabIndex        = 0;
     this.xtcCitas.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.tpCitas,
         this.tpAdicionales,
         this.tpLog
     });
     //
     // tpCitas
     //
     this.tpCitas.Controls.Add(this.gcCitas);
     this.tpCitas.Name = "tpCitas";
     this.tpCitas.Size = new System.Drawing.Size(683, 501);
     this.tpCitas.Text = "Citas programadas";
     //
     // gcCitas
     //
     this.gcCitas.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gcCitas.Location = new System.Drawing.Point(0, 0);
     this.gcCitas.MainView = this.gvCitas;
     this.gcCitas.Name     = "gcCitas";
     this.gcCitas.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.riTime
     });
     this.gcCitas.Size     = new System.Drawing.Size(683, 501);
     this.gcCitas.TabIndex = 1;
     this.gcCitas.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvCitas
     });
     //
     // gvCitas
     //
     this.gvCitas.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gcId,
         this.hcHora,
         this.gcServicio,
         this.gcMedico,
         this.gcPaciente,
         this.gcEstado
     });
     this.gvCitas.FocusRectStyle           = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvCitas.GridControl              = this.gcCitas;
     this.gvCitas.Name                     = "gvCitas";
     this.gvCitas.OptionsBehavior.Editable = false;
     this.gvCitas.OptionsCustomization.AllowColumnMoving     = false;
     this.gvCitas.OptionsCustomization.AllowGroup            = false;
     this.gvCitas.OptionsCustomization.AllowQuickHideColumns = false;
     this.gvCitas.OptionsMenu.EnableColumnMenu     = false;
     this.gvCitas.OptionsMenu.EnableFooterMenu     = false;
     this.gvCitas.OptionsMenu.EnableGroupPanelMenu = false;
     this.gvCitas.OptionsView.ColumnAutoWidth      = false;
     this.gvCitas.OptionsView.ShowGroupPanel       = false;
     this.gvCitas.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvCitas_RowCellStyle);
     this.gvCitas.DoubleClick  += new System.EventHandler(this.gvCitas_DoubleClick);
     //
     // gcId
     //
     this.gcId.Caption   = "Id.";
     this.gcId.FieldName = "Idprogramacioncitadet";
     this.gcId.Name      = "gcId";
     this.gcId.Width     = 61;
     //
     // hcHora
     //
     this.hcHora.AppearanceCell.Options.UseTextOptions = true;
     this.hcHora.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.hcHora.Caption      = "Hora";
     this.hcHora.ColumnEdit   = this.riTime;
     this.hcHora.FieldName    = "Horaprogramacion";
     this.hcHora.Name         = "hcHora";
     this.hcHora.Visible      = true;
     this.hcHora.VisibleIndex = 0;
     this.hcHora.Width        = 56;
     //
     // riTime
     //
     this.riTime.AutoHeight    = false;
     this.riTime.Mask.EditMask = "t";
     this.riTime.Mask.UseMaskAsDisplayFormat = true;
     this.riTime.Name = "riTime";
     //
     // gcServicio
     //
     this.gcServicio.Caption      = "Servicio";
     this.gcServicio.FieldName    = "Nombrearticulo";
     this.gcServicio.Name         = "gcServicio";
     this.gcServicio.Visible      = true;
     this.gcServicio.VisibleIndex = 1;
     this.gcServicio.Width        = 156;
     //
     // gcMedico
     //
     this.gcMedico.Caption      = "Medico";
     this.gcMedico.FieldName    = "Razonsocialmedico";
     this.gcMedico.Name         = "gcMedico";
     this.gcMedico.Visible      = true;
     this.gcMedico.VisibleIndex = 2;
     this.gcMedico.Width        = 139;
     //
     // gcPaciente
     //
     this.gcPaciente.Caption      = "Paciente";
     this.gcPaciente.FieldName    = "Razonsocialpaciente";
     this.gcPaciente.Name         = "gcPaciente";
     this.gcPaciente.Visible      = true;
     this.gcPaciente.VisibleIndex = 3;
     this.gcPaciente.Width        = 138;
     //
     // gcEstado
     //
     this.gcEstado.Caption      = "Estado";
     this.gcEstado.FieldName    = "Nombreestadocita";
     this.gcEstado.Name         = "gcEstado";
     this.gcEstado.Visible      = true;
     this.gcEstado.VisibleIndex = 4;
     this.gcEstado.Width        = 198;
     //
     // tpAdicionales
     //
     this.tpAdicionales.Name = "tpAdicionales";
     this.tpAdicionales.Size = new System.Drawing.Size(683, 501);
     this.tpAdicionales.Text = "Adicionales";
     //
     // tpLog
     //
     this.tpLog.Controls.Add(this.sccEventosPrincipal);
     this.tpLog.Name = "tpLog";
     this.tpLog.Size = new System.Drawing.Size(683, 501);
     this.tpLog.Text = "Eventos";
     //
     // sccEventosPrincipal
     //
     this.sccEventosPrincipal.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.sccEventosPrincipal.Horizontal = false;
     this.sccEventosPrincipal.Location   = new System.Drawing.Point(0, 0);
     this.sccEventosPrincipal.Name       = "sccEventosPrincipal";
     this.sccEventosPrincipal.Panel1.Controls.Add(this.gcEventos);
     this.sccEventosPrincipal.Panel1.Text = "PanelEventos";
     this.sccEventosPrincipal.Panel2.Controls.Add(this.btnSend);
     this.sccEventosPrincipal.Panel2.Controls.Add(this.labelControl1);
     this.sccEventosPrincipal.Panel2.Controls.Add(this.txtMessage);
     this.sccEventosPrincipal.Panel2.Text      = "PanelUsuarios";
     this.sccEventosPrincipal.Size             = new System.Drawing.Size(683, 501);
     this.sccEventosPrincipal.SplitterPosition = 448;
     this.sccEventosPrincipal.TabIndex         = 9;
     this.sccEventosPrincipal.Text             = "splitContainerControl1";
     //
     // gcEventos
     //
     this.gcEventos.Controls.Add(this.rtxtConversation);
     this.gcEventos.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gcEventos.Location = new System.Drawing.Point(0, 0);
     this.gcEventos.Name     = "gcEventos";
     this.gcEventos.Size     = new System.Drawing.Size(683, 448);
     this.gcEventos.TabIndex = 12;
     this.gcEventos.Text     = "Eventos";
     //
     // rtxtConversation
     //
     this.rtxtConversation.Dock                = System.Windows.Forms.DockStyle.Fill;
     this.rtxtConversation.Location            = new System.Drawing.Point(2, 20);
     this.rtxtConversation.MenuManager         = this.bmCitas;
     this.rtxtConversation.Name                = "rtxtConversation";
     this.rtxtConversation.Properties.ReadOnly = true;
     this.rtxtConversation.Size                = new System.Drawing.Size(679, 426);
     this.rtxtConversation.TabIndex            = 7;
     //
     // bmCitas
     //
     this.bmCitas.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.barCitas
     });
     this.bmCitas.DockControls.Add(this.barDockControlTop);
     this.bmCitas.DockControls.Add(this.barDockControlBottom);
     this.bmCitas.DockControls.Add(this.barDockControlLeft);
     this.bmCitas.DockControls.Add(this.barDockControlRight);
     this.bmCitas.Form = this;
     this.bmCitas.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.btnVerEditarrCita,
         this.btnAnularCita,
         this.btnVerPagos,
         this.btnActualizar,
         this.btnVerHistorial
     });
     this.bmCitas.MaxItemId  = 8;
     this.bmCitas.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bmCitas_ItemClick);
     //
     // barCitas
     //
     this.barCitas.BarName      = "Tools Citas";
     this.barCitas.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Top;
     this.barCitas.DockCol      = 0;
     this.barCitas.DockRow      = 0;
     this.barCitas.DockStyle    = DevExpress.XtraBars.BarDockStyle.Top;
     this.barCitas.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnVerEditarrCita, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnAnularCita, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnVerPagos, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnActualizar, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnVerHistorial, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)
     });
     this.barCitas.OptionsBar.UseWholeRow = true;
     this.barCitas.Text = "Tools";
     //
     // btnVerEditarrCita
     //
     this.btnVerEditarrCita.Caption    = "Ver/Modificar Cita";
     this.btnVerEditarrCita.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnVerEditarrCita.Glyph")));
     this.btnVerEditarrCita.Id         = 2;
     this.btnVerEditarrCita.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnVerEditarrCita.LargeGlyph")));
     this.btnVerEditarrCita.Name       = "btnVerEditarrCita";
     //
     // btnAnularCita
     //
     this.btnAnularCita.Caption    = "Anular Cita";
     this.btnAnularCita.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnAnularCita.Glyph")));
     this.btnAnularCita.Id         = 3;
     this.btnAnularCita.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnularCita.LargeGlyph")));
     this.btnAnularCita.Name       = "btnAnularCita";
     //
     // btnVerPagos
     //
     this.btnVerPagos.Caption    = "Pagos";
     this.btnVerPagos.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnVerPagos.Glyph")));
     this.btnVerPagos.Id         = 4;
     this.btnVerPagos.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnVerPagos.LargeGlyph")));
     this.btnVerPagos.Name       = "btnVerPagos";
     //
     // btnActualizar
     //
     this.btnActualizar.Caption    = "Actualizar";
     this.btnActualizar.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnActualizar.Glyph")));
     this.btnActualizar.Id         = 6;
     this.btnActualizar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnActualizar.LargeGlyph")));
     this.btnActualizar.Name       = "btnActualizar";
     //
     // btnVerHistorial
     //
     this.btnVerHistorial.Caption    = "Ver Historial";
     this.btnVerHistorial.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnVerHistorial.Glyph")));
     this.btnVerHistorial.Id         = 7;
     this.btnVerHistorial.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnVerHistorial.LargeGlyph")));
     this.btnVerHistorial.Name       = "btnVerHistorial";
     //
     // 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(950, 31);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 560);
     this.barDockControlBottom.Size             = new System.Drawing.Size(950, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 31);
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 529);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(950, 31);
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 529);
     //
     // btnSend
     //
     this.btnSend.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSend.Location = new System.Drawing.Point(597, 17);
     this.btnSend.Name     = "btnSend";
     this.btnSend.Size     = new System.Drawing.Size(68, 24);
     this.btnSend.TabIndex = 11;
     this.btnSend.Text     = "Enviar";
     this.btnSend.Click   += new System.EventHandler(this.btnSend_Click);
     //
     // labelControl1
     //
     this.labelControl1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl1.Location = new System.Drawing.Point(3, 0);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(34, 13);
     this.labelControl1.TabIndex = 10;
     this.labelControl1.Text     = "Evento";
     //
     // txtMessage
     //
     this.txtMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMessage.Location    = new System.Drawing.Point(3, 19);
     this.txtMessage.MenuManager = this.bmCitas;
     this.txtMessage.Name        = "txtMessage";
     this.txtMessage.Size        = new System.Drawing.Size(588, 20);
     this.txtMessage.TabIndex    = 9;
     //
     // AlertControlCita
     //
     this.AlertControlCita.AutoHeight = true;
     alertButton1.Name = "btnCita";
     this.AlertControlCita.Buttons.Add(alertButton1);
     //
     // ProgramacioncitaVisorFrmBackup
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(950, 560);
     this.Controls.Add(this.sccPrincipal);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name         = "ProgramacioncitaVisorFrmBackup";
     this.Text         = "Citas";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ProgramacioncitaVisorFrmBackup_FormClosing);
     this.Load        += new System.EventHandler(this.ProgramacioncitaVisorFrmBackup_Load);
     ((System.ComponentModel.ISupportInitialize)(this.sccPrincipal)).EndInit();
     this.sccPrincipal.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.sccPrincipalDerecho)).EndInit();
     this.sccPrincipalDerecho.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.iCalendarioCita.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.iFiltroEspecialidad.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit2View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iFiltroMedico.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtcCitas)).EndInit();
     this.xtcCitas.ResumeLayout(false);
     this.tpCitas.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcCitas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCitas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riTime)).EndInit();
     this.tpLog.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.sccEventosPrincipal)).EndInit();
     this.sccEventosPrincipal.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcEventos)).EndInit();
     this.gcEventos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.rtxtConversation.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bmCitas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMessage.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #16
0
 /// <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();
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.txtUsuario                  = new DevExpress.XtraBars.BarStaticItem();
     this.txtComputadora              = new DevExpress.XtraBars.BarStaticItem();
     this.mnuTipoVehiculo             = new DevExpress.XtraBars.BarButtonItem();
     this.mnuMarca                    = new DevExpress.XtraBars.BarButtonItem();
     this.mnuLinea                    = new DevExpress.XtraBars.BarButtonItem();
     this.mnuCliente                  = new DevExpress.XtraBars.BarButtonItem();
     this.mnuTipoCosto                = new DevExpress.XtraBars.BarButtonItem();
     this.mnuIngresoVehiculo          = new DevExpress.XtraBars.BarButtonItem();
     this.mnuCotizacion               = new DevExpress.XtraBars.BarButtonItem();
     this.mnuVenta                    = new DevExpress.XtraBars.BarButtonItem();
     this.mnuPago                     = new DevExpress.XtraBars.BarButtonItem();
     this.mnuReporteVenta             = new DevExpress.XtraBars.BarButtonItem();
     this.mnuReporteClientesAtrasados = new DevExpress.XtraBars.BarButtonItem();
     this.mnuCerrarSesion             = new DevExpress.XtraBars.BarButtonItem();
     this.mnuUsuario                  = new DevExpress.XtraBars.BarButtonItem();
     this.mnuRol                = new DevExpress.XtraBars.BarButtonItem();
     this.mnuBackup             = new DevExpress.XtraBars.BarButtonItem();
     this.mnuRestaurar          = new DevExpress.XtraBars.BarButtonItem();
     this.mnuReporteCorreo      = new DevExpress.XtraBars.BarButtonItem();
     this.rbpMaestros           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpMovimientos        = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpReportes           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup4      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpSeguridad          = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup5      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup7      = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar1      = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.defaultLookAndFeel1   = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.alertControl1         = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbon.ExpandCollapseItem,
         this.skinRibbonGalleryBarItem1,
         this.txtUsuario,
         this.txtComputadora,
         this.mnuTipoVehiculo,
         this.mnuMarca,
         this.mnuLinea,
         this.mnuCliente,
         this.mnuTipoCosto,
         this.mnuIngresoVehiculo,
         this.mnuCotizacion,
         this.mnuVenta,
         this.mnuPago,
         this.mnuReporteVenta,
         this.mnuReporteClientesAtrasados,
         this.mnuCerrarSesion,
         this.mnuUsuario,
         this.mnuRol,
         this.mnuBackup,
         this.mnuRestaurar,
         this.mnuReporteCorreo
     });
     this.ribbon.Location  = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 21;
     this.ribbon.Name      = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.rbpMaestros,
         this.rbpMovimientos,
         this.rbpReportes,
         this.rbpSeguridad
     });
     this.ribbon.RibbonStyle              = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
     this.ribbon.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this.ribbon.ShowApplicationButton    = DevExpress.Utils.DefaultBoolean.False;
     this.ribbon.ShowCategoryInCaption    = false;
     this.ribbon.ShowToolbarCustomizeItem = false;
     this.ribbon.Size      = new System.Drawing.Size(730, 147);
     this.ribbon.StatusBar = this.ribbonStatusBar1;
     this.ribbon.Toolbar.ShowCustomizeItem = false;
     this.ribbon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_ItemClick);
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
     this.skinRibbonGalleryBarItem1.Id      = 1;
     this.skinRibbonGalleryBarItem1.Name    = "skinRibbonGalleryBarItem1";
     //
     // txtUsuario
     //
     this.txtUsuario.Id            = 2;
     this.txtUsuario.Name          = "txtUsuario";
     this.txtUsuario.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // txtComputadora
     //
     this.txtComputadora.Id            = 3;
     this.txtComputadora.Name          = "txtComputadora";
     this.txtComputadora.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // mnuTipoVehiculo
     //
     this.mnuTipoVehiculo.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
     this.mnuTipoVehiculo.Caption            = "Tipos de Vehículo";
     this.mnuTipoVehiculo.Glyph       = global::PV.Properties.Resources.tipoVehiculo_48px;
     this.mnuTipoVehiculo.Id          = 4;
     this.mnuTipoVehiculo.Name        = "mnuTipoVehiculo";
     this.mnuTipoVehiculo.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuTipoVehiculo.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuMarca
     //
     this.mnuMarca.Caption     = "Marcas";
     this.mnuMarca.Glyph       = global::PV.Properties.Resources.marca_48px;
     this.mnuMarca.Id          = 5;
     this.mnuMarca.Name        = "mnuMarca";
     this.mnuMarca.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuMarca.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuLinea
     //
     this.mnuLinea.Caption     = "Líneas";
     this.mnuLinea.Glyph       = global::PV.Properties.Resources.linea_48px;
     this.mnuLinea.Id          = 6;
     this.mnuLinea.Name        = "mnuLinea";
     this.mnuLinea.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuLinea.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuCliente
     //
     this.mnuCliente.Caption     = "Clientes";
     this.mnuCliente.Glyph       = global::PV.Properties.Resources.cliente_48px;
     this.mnuCliente.Id          = 7;
     this.mnuCliente.Name        = "mnuCliente";
     this.mnuCliente.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuCliente.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuTipoCosto
     //
     this.mnuTipoCosto.Caption     = "Tipos de Costo de Vehículos";
     this.mnuTipoCosto.Glyph       = global::PV.Properties.Resources.tipoCosto_48px;
     this.mnuTipoCosto.Id          = 8;
     this.mnuTipoCosto.Name        = "mnuTipoCosto";
     this.mnuTipoCosto.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuTipoCosto.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuIngresoVehiculo
     //
     this.mnuIngresoVehiculo.Caption     = "Ingreso de Vehículos";
     this.mnuIngresoVehiculo.Glyph       = global::PV.Properties.Resources.ingresoVehiculos_48px;
     this.mnuIngresoVehiculo.Id          = 9;
     this.mnuIngresoVehiculo.Name        = "mnuIngresoVehiculo";
     this.mnuIngresoVehiculo.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuIngresoVehiculo.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuCotizacion
     //
     this.mnuCotizacion.Caption     = "Cotización";
     this.mnuCotizacion.Glyph       = global::PV.Properties.Resources.cotizacion_48px;
     this.mnuCotizacion.Id          = 10;
     this.mnuCotizacion.Name        = "mnuCotizacion";
     this.mnuCotizacion.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuCotizacion.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuVenta
     //
     this.mnuVenta.Caption     = "Venta";
     this.mnuVenta.Glyph       = global::PV.Properties.Resources.venta_48px;
     this.mnuVenta.Id          = 11;
     this.mnuVenta.Name        = "mnuVenta";
     this.mnuVenta.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuVenta.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuPago
     //
     this.mnuPago.Caption     = "Pago";
     this.mnuPago.Glyph       = global::PV.Properties.Resources.pago_48px;
     this.mnuPago.Id          = 12;
     this.mnuPago.Name        = "mnuPago";
     this.mnuPago.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuPago.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuReporteVenta
     //
     this.mnuReporteVenta.Caption     = "Reporte de Ventas";
     this.mnuReporteVenta.Glyph       = global::PV.Properties.Resources.reporteVenta_48px;
     this.mnuReporteVenta.Id          = 13;
     this.mnuReporteVenta.Name        = "mnuReporteVenta";
     this.mnuReporteVenta.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuReporteVenta.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuReporteClientesAtrasados
     //
     this.mnuReporteClientesAtrasados.Caption     = "Clientes Con Cuotas Atrasadas";
     this.mnuReporteClientesAtrasados.Glyph       = global::PV.Properties.Resources.Clock_48px;
     this.mnuReporteClientesAtrasados.Id          = 14;
     this.mnuReporteClientesAtrasados.Name        = "mnuReporteClientesAtrasados";
     this.mnuReporteClientesAtrasados.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuReporteClientesAtrasados.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuCerrarSesion
     //
     this.mnuCerrarSesion.Caption     = "Cerrar Sesión";
     this.mnuCerrarSesion.Glyph       = global::PV.Properties.Resources.Shutdown_48px;
     this.mnuCerrarSesion.Id          = 15;
     this.mnuCerrarSesion.Name        = "mnuCerrarSesion";
     this.mnuCerrarSesion.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuCerrarSesion.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.mnuCerrarSesion_ItemClick);
     //
     // mnuUsuario
     //
     this.mnuUsuario.Caption     = "Usuarios";
     this.mnuUsuario.Glyph       = global::PV.Properties.Resources.usuario_48px;
     this.mnuUsuario.Id          = 16;
     this.mnuUsuario.Name        = "mnuUsuario";
     this.mnuUsuario.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuUsuario.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuRol
     //
     this.mnuRol.Caption     = "Roles";
     this.mnuRol.Glyph       = global::PV.Properties.Resources.rol_48px;
     this.mnuRol.Id          = 17;
     this.mnuRol.Name        = "mnuRol";
     this.mnuRol.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuRol.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuBackup
     //
     this.mnuBackup.Caption     = "Crear Copia de Seguridad";
     this.mnuBackup.Glyph       = global::PV.Properties.Resources.backup_48px;
     this.mnuBackup.Id          = 18;
     this.mnuBackup.Name        = "mnuBackup";
     this.mnuBackup.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuBackup.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mnuRestaurar
     //
     this.mnuRestaurar.Caption     = "Restaurar";
     this.mnuRestaurar.Glyph       = global::PV.Properties.Resources.restore_48px;
     this.mnuRestaurar.Id          = 19;
     this.mnuRestaurar.Name        = "mnuRestaurar";
     this.mnuRestaurar.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuRestaurar.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     this.mnuRestaurar.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.mnuRestaurar_ItemClick);
     //
     // mnuReporteCorreo
     //
     this.mnuReporteCorreo.Caption     = "Reporte Correo";
     this.mnuReporteCorreo.Glyph       = global::PV.Properties.Resources.Message_48px;
     this.mnuReporteCorreo.Id          = 20;
     this.mnuReporteCorreo.Name        = "mnuReporteCorreo";
     this.mnuReporteCorreo.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.mnuReporteCorreo.Visibility  = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // rbpMaestros
     //
     this.rbpMaestros.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup2
     });
     this.rbpMaestros.Name = "rbpMaestros";
     this.rbpMaestros.Text = "Maestros";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.mnuTipoVehiculo);
     this.ribbonPageGroup1.ItemLinks.Add(this.mnuMarca);
     this.ribbonPageGroup1.ItemLinks.Add(this.mnuLinea);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Maestros de vehículos";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.mnuCliente);
     this.ribbonPageGroup2.ItemLinks.Add(this.mnuTipoCosto);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Otros Maestros";
     //
     // rbpMovimientos
     //
     this.rbpMovimientos.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup3
     });
     this.rbpMovimientos.Name = "rbpMovimientos";
     this.rbpMovimientos.Text = "Movimientos";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.mnuIngresoVehiculo);
     this.ribbonPageGroup3.ItemLinks.Add(this.mnuCotizacion);
     this.ribbonPageGroup3.ItemLinks.Add(this.mnuVenta);
     this.ribbonPageGroup3.ItemLinks.Add(this.mnuPago);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     //
     // rbpReportes
     //
     this.rbpReportes.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup4
     });
     this.rbpReportes.Name = "rbpReportes";
     this.rbpReportes.Text = "Reportes";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.mnuReporteVenta);
     this.ribbonPageGroup4.ItemLinks.Add(this.mnuReporteClientesAtrasados);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     //
     // rbpSeguridad
     //
     this.rbpSeguridad.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup5,
         this.ribbonPageGroup6,
         this.ribbonPageGroup7
     });
     this.rbpSeguridad.Name = "rbpSeguridad";
     this.rbpSeguridad.Text = "Seguridad";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.mnuCerrarSesion);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.mnuUsuario);
     this.ribbonPageGroup6.ItemLinks.Add(this.mnuRol);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.Text = "Accesos";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.ItemLinks.Add(this.mnuBackup);
     this.ribbonPageGroup7.ItemLinks.Add(this.mnuRestaurar);
     this.ribbonPageGroup7.ItemLinks.Add(this.mnuReporteCorreo);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     this.ribbonPageGroup7.Text = "Base de Datos";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.txtComputadora, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.txtUsuario, true);
     this.ribbonStatusBar1.Location    = new System.Drawing.Point(0, 568);
     this.ribbonStatusBar1.Name        = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon      = this.ribbon;
     this.ribbonStatusBar1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ribbonStatusBar1.Size        = new System.Drawing.Size(730, 23);
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2013 Light Gray";
     //
     // xtraTabbedMdiManager1
     //
     this.xtraTabbedMdiManager1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabbedMdiManager1.MdiParent = this;
     //
     // alertControl1
     //
     this.alertControl1.AppearanceCaption.Font                        = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
     this.alertControl1.AppearanceCaption.ForeColor                   = System.Drawing.Color.Maroon;
     this.alertControl1.AppearanceCaption.Options.UseFont             = true;
     this.alertControl1.AppearanceCaption.Options.UseForeColor        = true;
     this.alertControl1.AppearanceCaption.Options.UseTextOptions      = true;
     this.alertControl1.AppearanceCaption.TextOptions.HAlignment      = DevExpress.Utils.HorzAlignment.Center;
     this.alertControl1.AppearanceHotTrackedText.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.alertControl1.AppearanceHotTrackedText.ForeColor            = System.Drawing.Color.Maroon;
     this.alertControl1.AppearanceHotTrackedText.Options.UseFont      = true;
     this.alertControl1.AppearanceHotTrackedText.Options.UseForeColor = true;
     this.alertControl1.AppearanceText.Font                   = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.alertControl1.AppearanceText.ForeColor              = System.Drawing.Color.Maroon;
     this.alertControl1.AppearanceText.Image                  = global::PV.Properties.Resources.High_Priority_24px;
     this.alertControl1.AppearanceText.Options.UseFont        = true;
     this.alertControl1.AppearanceText.Options.UseForeColor   = true;
     this.alertControl1.AppearanceText.Options.UseImage       = true;
     this.alertControl1.AppearanceText.Options.UseTextOptions = true;
     this.alertControl1.AppearanceText.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.alertControl1.AppearanceText.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.alertControl1.AutoHeight = true;
     alertButton1.Image            = global::PV.Properties.Resources.Clock_24px;
     alertButton1.Name             = "btnListado";
     this.alertControl1.Buttons.Add(alertButton1);
     this.alertControl1.ControlBoxPosition   = DevExpress.XtraBars.Alerter.AlertFormControlBoxPosition.Right;
     this.alertControl1.FormDisplaySpeed     = DevExpress.XtraBars.Alerter.AlertFormDisplaySpeed.Fast;
     this.alertControl1.FormLocation         = DevExpress.XtraBars.Alerter.AlertFormLocation.TopRight;
     this.alertControl1.FormShowingEffect    = DevExpress.XtraBars.Alerter.AlertFormShowingEffect.SlideHorizontal;
     this.alertControl1.LookAndFeel.SkinName = "Office 2013";
     this.alertControl1.LookAndFeel.Style    = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     //
     // FrmMain
     //
     this.AllowMdiBar         = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(730, 591);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbon);
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name           = "FrmMain";
     this.Ribbon         = this.ribbon;
     this.StatusBar      = this.ribbonStatusBar1;
     this.Text           = "Importadora Génesis";
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosed    += new System.Windows.Forms.FormClosedEventHandler(this.FrmMain_FormClosed);
     this.Load          += new System.EventHandler(this.FrmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(Contenido));
     DevExpress.XtraBars.Alerter.AlertButton        alertButton1 = new DevExpress.XtraBars.Alerter.AlertButton();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.lblFechaInicio    = new System.Windows.Forms.Label();
     this.dtpFechaInicio    = new System.Windows.Forms.DateTimePicker();
     this.txtHora           = new System.Windows.Forms.Label();
     this.lblFechaFin       = new System.Windows.Forms.Label();
     this.dtpFechaFinal     = new System.Windows.Forms.DateTimePicker();
     this.pbLogo            = new System.Windows.Forms.PictureBox();
     this.btnGenerar        = new System.Windows.Forms.Button();
     this.lblSucursal       = new System.Windows.Forms.Label();
     this.cbSucursal        = new System.Windows.Forms.ComboBox();
     this.rvPedidos         = new Microsoft.Reporting.WinForms.ReportViewer();
     this.btnResumen        = new System.Windows.Forms.Button();
     this.chbMisPedidos     = new System.Windows.Forms.CheckBox();
     this.cbNotificar       = new System.Windows.Forms.CheckBox();
     this.timerReloj        = new System.Windows.Forms.Timer();
     this.timerActualizar   = new System.Windows.Forms.Timer();
     this.toolTip           = new System.Windows.Forms.ToolTip();
     this.alertControl      = new DevExpress.XtraBars.Alerter.AlertControl();
     this.imageCollection   = new DevExpress.Utils.ImageCollection();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbLogo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 8;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 2F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 27F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 119F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 56F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 2F));
     this.tableLayoutPanel1.Controls.Add(this.lblFechaInicio, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.dtpFechaInicio, 3, 2);
     this.tableLayoutPanel1.Controls.Add(this.txtHora, 6, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblFechaFin, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.dtpFechaFinal, 3, 3);
     this.tableLayoutPanel1.Controls.Add(this.pbLogo, 6, 0);
     this.tableLayoutPanel1.Controls.Add(this.btnGenerar, 4, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblSucursal, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.cbSucursal, 3, 1);
     this.tableLayoutPanel1.Controls.Add(this.rvPedidos, 1, 5);
     this.tableLayoutPanel1.Controls.Add(this.btnResumen, 4, 2);
     this.tableLayoutPanel1.Controls.Add(this.chbMisPedidos, 5, 3);
     this.tableLayoutPanel1.Controls.Add(this.cbNotificar, 5, 2);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin   = new System.Windows.Forms.Padding(4);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 7;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 62F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 12F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 98F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(1179, 405);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // lblFechaInicio
     //
     this.lblFechaInicio.AutoSize  = true;
     this.lblFechaInicio.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.lblFechaInicio.Location  = new System.Drawing.Point(20, 94);
     this.lblFechaInicio.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblFechaInicio.Name      = "lblFechaInicio";
     this.lblFechaInicio.Size      = new System.Drawing.Size(87, 36);
     this.lblFechaInicio.TabIndex  = 0;
     this.lblFechaInicio.Text      = "Fecha inicio:";
     this.lblFechaInicio.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // dtpFechaInicio
     //
     this.dtpFechaInicio.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dtpFechaInicio.Location = new System.Drawing.Point(142, 98);
     this.dtpFechaInicio.Margin   = new System.Windows.Forms.Padding(4);
     this.dtpFechaInicio.Name     = "dtpFechaInicio";
     this.dtpFechaInicio.Size     = new System.Drawing.Size(324, 22);
     this.dtpFechaInicio.TabIndex = 1;
     this.dtpFechaInicio.Value    = new System.DateTime(2016, 11, 24, 0, 0, 0, 0);
     //
     // txtHora
     //
     this.txtHora.AutoSize = true;
     this.txtHora.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.txtHora.Font     = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHora.Location = new System.Drawing.Point(701, 94);
     this.txtHora.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.txtHora.Name     = "txtHora";
     this.tableLayoutPanel1.SetRowSpan(this.txtHora, 2);
     this.txtHora.Size      = new System.Drawing.Size(456, 72);
     this.txtHora.TabIndex  = 2;
     this.txtHora.Text      = "Fecha";
     this.txtHora.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblFechaFin
     //
     this.lblFechaFin.AutoSize  = true;
     this.lblFechaFin.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.lblFechaFin.Location  = new System.Drawing.Point(20, 130);
     this.lblFechaFin.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblFechaFin.Name      = "lblFechaFin";
     this.lblFechaFin.Size      = new System.Drawing.Size(87, 36);
     this.lblFechaFin.TabIndex  = 3;
     this.lblFechaFin.Text      = "Fecha final:";
     this.lblFechaFin.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // dtpFechaFinal
     //
     this.dtpFechaFinal.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dtpFechaFinal.Location = new System.Drawing.Point(142, 134);
     this.dtpFechaFinal.Margin   = new System.Windows.Forms.Padding(4);
     this.dtpFechaFinal.Name     = "dtpFechaFinal";
     this.dtpFechaFinal.Size     = new System.Drawing.Size(324, 22);
     this.dtpFechaFinal.TabIndex = 4;
     //
     // pbLogo
     //
     this.tableLayoutPanel1.SetColumnSpan(this.pbLogo, 2);
     this.pbLogo.Dock        = System.Windows.Forms.DockStyle.Right;
     this.pbLogo.Image       = global::Dapesa.Credito.Pedidos.IU.MensajeroCXC.Properties.Resources.dapesa500;
     this.pbLogo.Location    = new System.Drawing.Point(975, 4);
     this.pbLogo.Margin      = new System.Windows.Forms.Padding(4);
     this.pbLogo.MinimumSize = new System.Drawing.Size(200, 62);
     this.pbLogo.Name        = "pbLogo";
     this.pbLogo.Size        = new System.Drawing.Size(200, 62);
     this.pbLogo.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbLogo.TabIndex    = 6;
     this.pbLogo.TabStop     = false;
     //
     // btnGenerar
     //
     this.btnGenerar.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.btnGenerar.Location = new System.Drawing.Point(474, 134);
     this.btnGenerar.Margin   = new System.Windows.Forms.Padding(4);
     this.btnGenerar.Name     = "btnGenerar";
     this.btnGenerar.Size     = new System.Drawing.Size(100, 28);
     this.btnGenerar.TabIndex = 7;
     this.btnGenerar.Text     = "Generar";
     this.btnGenerar.UseVisualStyleBackColor = true;
     this.btnGenerar.Click += new System.EventHandler(this.btnGenerar_Click);
     //
     // lblSucursal
     //
     this.lblSucursal.AutoSize  = true;
     this.lblSucursal.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.lblSucursal.Location  = new System.Drawing.Point(20, 62);
     this.lblSucursal.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblSucursal.Name      = "lblSucursal";
     this.lblSucursal.Size      = new System.Drawing.Size(87, 32);
     this.lblSucursal.TabIndex  = 9;
     this.lblSucursal.Text      = "Sucursal:";
     this.lblSucursal.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cbSucursal
     //
     this.cbSucursal.DisplayMember     = "Descripcion";
     this.cbSucursal.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.cbSucursal.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbSucursal.FormattingEnabled = true;
     this.cbSucursal.Location          = new System.Drawing.Point(142, 66);
     this.cbSucursal.Margin            = new System.Windows.Forms.Padding(4);
     this.cbSucursal.Name              = "cbSucursal";
     this.cbSucursal.Size              = new System.Drawing.Size(324, 24);
     this.cbSucursal.TabIndex          = 10;
     this.cbSucursal.ValueMember       = "Clave";
     //
     // rvPedidos
     //
     this.tableLayoutPanel1.SetColumnSpan(this.rvPedidos, 6);
     this.rvPedidos.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.rvPedidos.DocumentMapWidth = 3;
     this.rvPedidos.Location         = new System.Drawing.Point(20, 182);
     this.rvPedidos.Margin           = new System.Windows.Forms.Padding(4);
     this.rvPedidos.Name             = "rvPedidos";
     this.rvPedidos.Size             = new System.Drawing.Size(1137, 214);
     this.rvPedidos.TabIndex         = 11;
     //
     // btnResumen
     //
     this.btnResumen.Location = new System.Drawing.Point(474, 98);
     this.btnResumen.Margin   = new System.Windows.Forms.Padding(4);
     this.btnResumen.Name     = "btnResumen";
     this.btnResumen.Size     = new System.Drawing.Size(100, 28);
     this.btnResumen.TabIndex = 12;
     this.btnResumen.Text     = "Resumen";
     this.btnResumen.UseVisualStyleBackColor = true;
     this.btnResumen.Click += new System.EventHandler(this.btnResumen_Click);
     //
     // chbMisPedidos
     //
     this.chbMisPedidos.AutoSize = true;
     this.chbMisPedidos.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.chbMisPedidos.Location = new System.Drawing.Point(582, 134);
     this.chbMisPedidos.Margin   = new System.Windows.Forms.Padding(4);
     this.chbMisPedidos.Name     = "chbMisPedidos";
     this.chbMisPedidos.Size     = new System.Drawing.Size(111, 28);
     this.chbMisPedidos.TabIndex = 13;
     this.chbMisPedidos.Text     = "Mis pedidos";
     this.chbMisPedidos.UseVisualStyleBackColor = true;
     //
     // cbNotificar
     //
     this.cbNotificar.AutoSize = true;
     this.cbNotificar.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.cbNotificar.Location = new System.Drawing.Point(581, 97);
     this.cbNotificar.Name     = "cbNotificar";
     this.cbNotificar.Size     = new System.Drawing.Size(113, 30);
     this.cbNotificar.TabIndex = 14;
     this.cbNotificar.Text     = "No molestar";
     this.cbNotificar.UseVisualStyleBackColor = true;
     this.cbNotificar.Visible = false;
     //
     // timerReloj
     //
     this.timerReloj.Enabled = true;
     this.timerReloj.Tick   += new System.EventHandler(this.timerReloj_Tick);
     //
     // timerActualizar
     //
     this.timerActualizar.Enabled  = true;
     this.timerActualizar.Interval = 30000;
     this.timerActualizar.Tick    += new System.EventHandler(this.timerActualizar_Tick);
     //
     // alertControl
     //
     this.alertControl.AllowHtmlText                     = true;
     this.alertControl.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.alertControl.AppearanceCaption.Options.UseFont = true;
     this.alertControl.AppearanceText.Font               = new System.Drawing.Font("Tahoma", 9F);
     this.alertControl.AppearanceText.Image              = ((System.Drawing.Image)(resources.GetObject("alertControl.AppearanceText.Image")));
     this.alertControl.AppearanceText.Options.UseFont    = true;
     this.alertControl.AppearanceText.Options.UseImage   = true;
     this.alertControl.AutoFormDelay                     = 300000;
     alertButton1.Name = "abtnCerrar";
     this.alertControl.Buttons.Add(alertButton1);
     this.alertControl.FormShowingEffect = DevExpress.XtraBars.Alerter.AlertFormShowingEffect.SlideHorizontal;
     this.alertControl.AlertClick       += new DevExpress.XtraBars.Alerter.AlertClickEventHandler(this.alertControl_AlertClick);
     this.alertControl.ButtonClick      += new DevExpress.XtraBars.Alerter.AlertButtonClickEventHandler(this.alertControl_ButtonClick);
     this.alertControl.FormLoad         += new DevExpress.XtraBars.Alerter.AlertFormLoadEventHandler(this.alertControl_FormLoad);
     //
     // imageCollection
     //
     this.imageCollection.ImageSize   = new System.Drawing.Size(48, 48);
     this.imageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection.ImageStream")));
     this.imageCollection.Images.SetKeyName(0, "asignado.png");
     this.imageCollection.Images.SetKeyName(1, "sin_asignar.png");
     //
     // Contenido
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1179, 405);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin      = new System.Windows.Forms.Padding(4);
     this.MinimumSize = new System.Drawing.Size(1194, 441);
     this.Name        = "Contenido";
     this.Text        = "Contenido";
     this.Shown      += new System.EventHandler(this.Contenido_Shown);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbLogo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection)).EndInit();
     this.ResumeLayout(false);
 }