protected override void CreateChildElements()
 {
     base.CreateChildElements();
     this.listControl = new RadListControl();
     this.listControl.SelectionMode = SelectionMode.MultiSimple;
     this.hostItem = new RadHostItem((Control)this.listControl);
     this.Children.Add((RadElement)this.hostItem);
 }
 private void MoveItems(
     RadListControl left,
     RadItemCollection leftCollection,
     RadListControl right,
     RadItemCollection rigthCollection,
     int countItemsToMove)
 {
     if (left.Items.Count == 0)
     {
         return;
     }
     if (left.SelectedItems.Count == 0)
     {
         for (int index = 0; index < countItemsToMove; ++index)
         {
             RadListDataItem radListDataItem = left.Items[0];
             left.Items.Remove(radListDataItem);
             right.Items.Add(radListDataItem);
             RadItem tag = (RadItem)radListDataItem.Tag;
             leftCollection.Remove(tag);
             if (!rigthCollection.Contains(tag))
             {
                 rigthCollection.Add(tag);
             }
         }
     }
     else
     {
         for (int index = 0; index < left.SelectedItems.Count; ++index)
         {
             RadListDataItem selectedItem = left.SelectedItems[index];
             left.Items.Remove(selectedItem);
             right.Items.Add(selectedItem);
             RadItem tag = (RadItem)selectedItem.Tag;
             leftCollection.Remove(tag);
             if (!rigthCollection.Contains(tag))
             {
                 rigthCollection.Add(tag);
             }
         }
     }
 }
 private void InitializeComponent()
 {
     this.radGroupBox1             = new RadGroupBox();
     this.radLabel2                = new RadLabel();
     this.radLabel1                = new RadLabel();
     this.radButtonRemoveOne       = new RadButton();
     this.radButtonRemoveAll       = new RadButton();
     this.radButtonAddAll          = new RadButton();
     this.radButtonAddOne          = new RadButton();
     this.radListBoxAssociatedTabs = new RadListControl();
     this.radListBoxAvaibleTabs    = new RadListControl();
     this.radButtonOk              = new RadButton();
     this.radButtonCancel          = new RadButton();
     this.radGroupBox1.BeginInit();
     this.radGroupBox1.SuspendLayout();
     this.radLabel2.BeginInit();
     this.radLabel1.BeginInit();
     this.radButtonRemoveOne.BeginInit();
     this.radButtonRemoveAll.BeginInit();
     this.radButtonAddAll.BeginInit();
     this.radButtonAddOne.BeginInit();
     this.radListBoxAssociatedTabs.BeginInit();
     this.radListBoxAvaibleTabs.BeginInit();
     this.radButtonOk.BeginInit();
     this.radButtonCancel.BeginInit();
     this.SuspendLayout();
     this.radGroupBox1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
     this.radGroupBox1.Controls.Add((Control)this.radLabel2);
     this.radGroupBox1.Controls.Add((Control)this.radLabel1);
     this.radGroupBox1.Controls.Add((Control)this.radButtonRemoveOne);
     this.radGroupBox1.Controls.Add((Control)this.radButtonRemoveAll);
     this.radGroupBox1.Controls.Add((Control)this.radButtonAddAll);
     this.radGroupBox1.Controls.Add((Control)this.radButtonAddOne);
     this.radGroupBox1.Controls.Add((Control)this.radListBoxAssociatedTabs);
     this.radGroupBox1.Controls.Add((Control)this.radListBoxAvaibleTabs);
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey   = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey   = "";
     this.radGroupBox1.HeaderMargin     = new Padding(0);
     this.radGroupBox1.HeaderText       = "Tabs";
     this.radGroupBox1.Location         = new Point(13, 13);
     this.radGroupBox1.Name             = "radGroupBox1";
     this.radGroupBox1.Size             = new Size(588, 412);
     this.radGroupBox1.TabIndex         = 0;
     this.radGroupBox1.Text             = "Tabs";
     this.radLabel2.Location            = new Point(325, 33);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new Size(88, 14);
     this.radLabel2.TabIndex = 5;
     this.radLabel2.Text     = "Associated Tabs";
     this.radLabel1.Location = new Point(13, 33);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new Size(79, 14);
     this.radLabel1.TabIndex = 5;
     this.radLabel1.Text     = "Available Tabs";
     this.radButtonRemoveOne.AllowShowFocusCues = true;
     this.radButtonRemoveOne.Location           = new Point(246, 146);
     this.radButtonRemoveOne.Name               = "radButtonRemoveOne";
     this.radButtonRemoveOne.Size               = new Size(75, 23);
     this.radButtonRemoveOne.TabIndex           = 4;
     this.radButtonRemoveOne.Text               = "<";
     this.radButtonRemoveOne.Click             += new EventHandler(this.radButtonRemoveOne_Click);
     this.radButtonRemoveAll.AllowShowFocusCues = true;
     this.radButtonRemoveAll.Location           = new Point(246, 116);
     this.radButtonRemoveAll.Name               = "radButtonRemoveAll";
     this.radButtonRemoveAll.Size               = new Size(75, 23);
     this.radButtonRemoveAll.TabIndex           = 3;
     this.radButtonRemoveAll.Text               = "<<";
     this.radButtonRemoveAll.Click             += new EventHandler(this.radButtonRemoveAll_Click);
     this.radButtonAddAll.AllowShowFocusCues    = true;
     this.radButtonAddAll.Location              = new Point(246, 86);
     this.radButtonAddAll.Name                   = "radButtonAddAll";
     this.radButtonAddAll.Size                   = new Size(75, 23);
     this.radButtonAddAll.TabIndex               = 2;
     this.radButtonAddAll.Text                   = ">>";
     this.radButtonAddAll.Click                 += new EventHandler(this.radButtonAddAll_Click);
     this.radButtonAddOne.AllowShowFocusCues     = true;
     this.radButtonAddOne.Location               = new Point(246, 57);
     this.radButtonAddOne.Name                   = "radButtonAddOne";
     this.radButtonAddOne.Size                   = new Size(75, 23);
     this.radButtonAddOne.TabIndex               = 1;
     this.radButtonAddOne.Text                   = ">";
     this.radButtonAddOne.Click                 += new EventHandler(this.radButtonAddOne_Click);
     this.radListBoxAssociatedTabs.Anchor        = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
     this.radListBoxAssociatedTabs.Location      = new Point(325, 55);
     this.radListBoxAssociatedTabs.Name          = "radListBoxAssociatedTabs";
     this.radListBoxAssociatedTabs.SelectionMode = SelectionMode.MultiExtended;
     this.radListBoxAssociatedTabs.Size          = new Size(248, 340);
     this.radListBoxAssociatedTabs.TabIndex      = 0;
     this.radListBoxAvaibleTabs.Anchor           = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left;
     this.radListBoxAvaibleTabs.Location         = new Point(13, 55);
     this.radListBoxAvaibleTabs.Name             = "radListBoxAvaibleTabs";
     this.radListBoxAvaibleTabs.SelectionMode    = SelectionMode.MultiExtended;
     this.radListBoxAvaibleTabs.Size             = new Size(227, 340);
     this.radListBoxAvaibleTabs.TabIndex         = 0;
     this.radButtonOk.AllowShowFocusCues         = true;
     this.radButtonOk.Anchor   = AnchorStyles.Bottom | AnchorStyles.Right;
     this.radButtonOk.Location = new Point(422, 430);
     this.radButtonOk.Name     = "radButtonOk";
     this.radButtonOk.Size     = new Size(75, 23);
     this.radButtonOk.TabIndex = 1;
     this.radButtonOk.Text     = "OK";
     this.radButtonOk.Click   += new EventHandler(this.radButtonOk_Click);
     this.radButtonCancel.AllowShowFocusCues = true;
     this.radButtonCancel.Anchor             = AnchorStyles.Bottom | AnchorStyles.Right;
     this.radButtonCancel.Location           = new Point(524, 430);
     this.radButtonCancel.Name     = "radButtonCancel";
     this.radButtonCancel.Size     = new Size(75, 23);
     this.radButtonCancel.TabIndex = 2;
     this.radButtonCancel.Text     = "Cancel";
     this.radButtonCancel.Click   += new EventHandler(this.radButtonCancel_Click);
     this.AutoScaleDimensions      = new SizeF(6f, 13f);
     this.AutoScaleMode            = AutoScaleMode.None;
     this.ClientSize = new Size(613, 458);
     this.Controls.Add((Control)this.radButtonCancel);
     this.Controls.Add((Control)this.radButtonOk);
     this.Controls.Add((Control)this.radGroupBox1);
     this.FormBorderStyle = FormBorderStyle.FixedSingle;
     this.StartPosition   = FormStartPosition.CenterScreen;
     this.Name            = nameof(ContextulTabGroupsEditor);
     this.ShowInTaskbar   = false;
     this.Text            = "Contextual Tab Groups Editor";
     this.radGroupBox1.EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     this.radLabel2.EndInit();
     this.radLabel1.EndInit();
     this.radButtonRemoveOne.EndInit();
     this.radButtonRemoveAll.EndInit();
     this.radButtonAddAll.EndInit();
     this.radButtonAddOne.EndInit();
     this.radListBoxAssociatedTabs.EndInit();
     this.radListBoxAvaibleTabs.EndInit();
     this.radButtonOk.EndInit();
     this.radButtonCancel.EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #4
0
 private void InitializeComponent()
 {
     this.radPageView           = new RadPageView();
     this.toolstripsPage        = new RadPageViewPage();
     this.stripsListControl     = new RadListControl();
     this.toolstripItemsPage    = new RadPageViewPage();
     this.resetItemsButton      = new RadButton();
     this.chooseToolstripLabel  = new RadLabel();
     this.moveDownButton        = new RadButton();
     this.moveUpButton          = new RadButton();
     this.stripItemsListControl = new RadListControl();
     this.stripsDropDownList    = new RadDropDownList();
     this.closeButton           = new RadButton();
     this.radPageView.BeginInit();
     this.radPageView.SuspendLayout();
     this.toolstripsPage.SuspendLayout();
     this.stripsListControl.BeginInit();
     this.toolstripItemsPage.SuspendLayout();
     this.resetItemsButton.BeginInit();
     this.chooseToolstripLabel.BeginInit();
     this.moveDownButton.BeginInit();
     this.moveUpButton.BeginInit();
     this.stripItemsListControl.BeginInit();
     this.stripsDropDownList.BeginInit();
     this.closeButton.BeginInit();
     this.BeginInit();
     this.SuspendLayout();
     this.radPageView.Controls.Add((Control)this.toolstripsPage);
     this.radPageView.Controls.Add((Control)this.toolstripItemsPage);
     this.radPageView.Location     = new Point(0, 0);
     this.radPageView.Name         = "radPageView";
     this.radPageView.SelectedPage = this.toolstripItemsPage;
     this.radPageView.Size         = new Size(399, 352);
     this.radPageView.TabIndex     = 0;
     this.radPageView.Text         = "f";
     this.toolstripsPage.Controls.Add((Control)this.stripsListControl);
     this.toolstripsPage.Location    = new Point(10, 37);
     this.toolstripsPage.Name        = "toolstripsPage";
     this.toolstripsPage.Size        = new Size(378, 304);
     this.toolstripsPage.Text        = "Toolstrips";
     this.stripsListControl.Location = new Point(3, 3);
     this.stripsListControl.Name     = "stripsListControl";
     this.stripsListControl.Size     = new Size(372, 298);
     this.stripsListControl.TabIndex = 0;
     this.stripsListControl.Text     = "radListControl1";
     this.toolstripItemsPage.Controls.Add((Control)this.resetItemsButton);
     this.toolstripItemsPage.Controls.Add((Control)this.chooseToolstripLabel);
     this.toolstripItemsPage.Controls.Add((Control)this.moveDownButton);
     this.toolstripItemsPage.Controls.Add((Control)this.moveUpButton);
     this.toolstripItemsPage.Controls.Add((Control)this.stripItemsListControl);
     this.toolstripItemsPage.Controls.Add((Control)this.stripsDropDownList);
     this.toolstripItemsPage.Location    = new Point(10, 37);
     this.toolstripItemsPage.Name        = "toolstripItemsPage";
     this.toolstripItemsPage.Size        = new Size(378, 304);
     this.toolstripItemsPage.Text        = "Toolstrip Items";
     this.resetItemsButton.Location      = new Point(285, 115);
     this.resetItemsButton.Name          = "resetItemsButton";
     this.resetItemsButton.Size          = new Size(91, 24);
     this.resetItemsButton.TabIndex      = 8;
     this.resetItemsButton.Text          = "Reset";
     this.resetItemsButton.Visible       = false;
     this.chooseToolstripLabel.BackColor = Color.Transparent;
     this.chooseToolstripLabel.Location  = new Point(1, 3);
     this.chooseToolstripLabel.Name      = "chooseToolstripLabel";
     this.chooseToolstripLabel.Size      = new Size(165, 18);
     this.chooseToolstripLabel.TabIndex  = 7;
     this.chooseToolstripLabel.Text      = "Choose a toolstrip to rearrange:";
     this.moveDownButton.Location        = new Point(285, 85);
     this.moveDownButton.Name            = "moveDownButton";
     this.moveDownButton.Size            = new Size(90, 24);
     this.moveDownButton.TabIndex        = 6;
     this.moveDownButton.Text            = "Move Down";
     this.moveDownButton.Click          += new EventHandler(this.moveDownButton_Click);
     this.moveUpButton.Location          = new Point(286, 55);
     this.moveUpButton.Name                        = "moveUpButton";
     this.moveUpButton.Size                        = new Size(89, 24);
     this.moveUpButton.TabIndex                    = 5;
     this.moveUpButton.Text                        = "Move Up";
     this.moveUpButton.Click                      += new EventHandler(this.moveUpButton_Click);
     this.stripItemsListControl.Location           = new Point(3, 55);
     this.stripItemsListControl.Name               = "stripItemsListControl";
     this.stripItemsListControl.Size               = new Size(277, 246);
     this.stripItemsListControl.TabIndex           = 1;
     this.stripItemsListControl.Text               = "radListControl1";
     this.stripsDropDownList.Location              = new Point(3, 27);
     this.stripsDropDownList.Name                  = "stripsDropDownList";
     this.stripsDropDownList.Size                  = new Size(372, 20);
     this.stripsDropDownList.TabIndex              = 0;
     this.stripsDropDownList.SelectedValueChanged += new EventHandler(this.toolstripsDownList_SelectedValueChanged);
     this.closeButton.Location                     = new Point(299, 358);
     this.closeButton.Name     = "closeButton";
     this.closeButton.Size     = new Size(93, 24);
     this.closeButton.TabIndex = 2;
     this.closeButton.Text     = "Close";
     this.AutoScaleDimensions  = new SizeF(6f, 13f);
     this.AutoScaleMode        = AutoScaleMode.None;
     this.ClientSize           = new Size(407, 390);
     this.Controls.Add((Control)this.closeButton);
     this.Controls.Add((Control)this.radPageView);
     this.Name = nameof(CommandBarCustomizeDialog);
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = FormStartPosition.CenterScreen;
     this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.Text            = "Customize";
     this.radPageView.EndInit();
     this.radPageView.ResumeLayout(false);
     this.toolstripsPage.ResumeLayout(false);
     this.stripsListControl.EndInit();
     this.toolstripItemsPage.ResumeLayout(false);
     this.toolstripItemsPage.PerformLayout();
     this.resetItemsButton.EndInit();
     this.chooseToolstripLabel.EndInit();
     this.moveDownButton.EndInit();
     this.moveUpButton.EndInit();
     this.stripItemsListControl.EndInit();
     this.stripsDropDownList.EndInit();
     this.closeButton.EndInit();
     this.EndInit();
     this.ResumeLayout(false);
 }
Example #5
0
 public RadListControlAccessibleObject(RadListControl owner)
     : base((Control)owner)
 {
     this.cachedObjects              = new Dictionary <RadListDataItem, RadListDataItemAccessibleObject>();
     this.List.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.Control_SelectedIndexChanged);
 }
 public RadListControlAccessibleObject(RadListControl owner)
     : base(owner)
 {
     this.List.SelectedIndexChanged += new PositionChangedEventHandler(Control_SelectedIndexChanged);
 }
 private void InitializeComponent()
 {
     this.listResources = new Telerik.WinControls.UI.RadListControl();
     ((System.ComponentModel.ISupportInitialize)(this.labelSubject)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelLocation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelBackground)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubject)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLocation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBackground)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelStartTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelEndTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateStart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeStart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEnd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllDay)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelResource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbResource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShowTimeAs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBoxDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonOK)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonRecurrence)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.listResources)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // cmbBackground
     //
     //
     //
     //
     this.cmbBackground.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.cmbBackground.Size = new System.Drawing.Size(180, 20);
     //
     // dateStart
     //
     this.dateStart.Value = new System.DateTime(2011, 5, 17, 11, 22, 29, 614);
     //
     // timeStart
     //
     this.timeStart.Value = new System.DateTime(2011, 5, 17, 11, 22, 29, 614);
     //
     // dateEnd
     //
     this.dateEnd.Value = new System.DateTime(2011, 5, 17, 11, 22, 29, 614);
     //
     // timeEnd
     //
     this.timeEnd.Value = new System.DateTime(2011, 5, 17, 11, 22, 29, 614);
     //
     // chkAllDay
     //
     //
     //
     //
     this.chkAllDay.RootElement.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5)))));
     //
     // cmbResource
     //
     this.cmbResource.Location = new System.Drawing.Point(345, 169);
     this.cmbResource.Size     = new System.Drawing.Size(180, 20);
     this.cmbResource.Visible  = false;
     //
     // cmbShowTimeAs
     //
     //
     //
     //
     this.cmbShowTimeAs.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.cmbShowTimeAs.Size = new System.Drawing.Size(178, 20);
     //
     // textBoxDescription
     //
     this.textBoxDescription.Location = new System.Drawing.Point(7, 322);
     //
     //
     //
     this.textBoxDescription.RootElement.StretchVertically = true;
     this.textBoxDescription.Size = new System.Drawing.Size(519, 116);
     //
     // buttonOK
     //
     this.buttonOK.Location = new System.Drawing.Point(6, 444);
     //
     // buttonCancel
     //
     this.buttonCancel.Location = new System.Drawing.Point(87, 444);
     //
     // buttonDelete
     //
     this.buttonDelete.Location = new System.Drawing.Point(168, 444);
     //
     // buttonRecurrence
     //
     this.buttonRecurrence.Location = new System.Drawing.Point(249, 444);
     //
     // radSeparator3
     //
     this.radSeparator3.Location = new System.Drawing.Point(6, 306);
     //
     // listResources
     //
     this.listResources.CaseSensitiveSort = true;
     this.listResources.ItemHeight        = 18;
     this.listResources.Location          = new System.Drawing.Point(79, 169);
     this.listResources.Name          = "listResources";
     this.listResources.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
     this.listResources.Size          = new System.Drawing.Size(180, 131);
     this.listResources.TabIndex      = 25;
     this.listResources.Text          = "radListControl1";
     //
     // MultipleResourcesDialog
     //
     this.ClientSize = new System.Drawing.Size(537, 472);
     this.Controls.Add(this.listResources);
     this.Name = "MultipleResourcesDialog";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.RootElement.MinSize             = new System.Drawing.Size(539, 365);
     this.Text = "Edit Appointment";
     this.Controls.SetChildIndex(this.listResources, 0);
     this.Controls.SetChildIndex(this.radSeparator3, 0);
     this.Controls.SetChildIndex(this.cmbResource, 0);
     this.Controls.SetChildIndex(this.labelSubject, 0);
     this.Controls.SetChildIndex(this.labelLocation, 0);
     this.Controls.SetChildIndex(this.labelBackground, 0);
     this.Controls.SetChildIndex(this.txtSubject, 0);
     this.Controls.SetChildIndex(this.txtLocation, 0);
     this.Controls.SetChildIndex(this.cmbBackground, 0);
     this.Controls.SetChildIndex(this.labelStartTime, 0);
     this.Controls.SetChildIndex(this.labelEndTime, 0);
     this.Controls.SetChildIndex(this.dateStart, 0);
     this.Controls.SetChildIndex(this.timeStart, 0);
     this.Controls.SetChildIndex(this.dateEnd, 0);
     this.Controls.SetChildIndex(this.timeEnd, 0);
     this.Controls.SetChildIndex(this.chkAllDay, 0);
     this.Controls.SetChildIndex(this.labelResource, 0);
     this.Controls.SetChildIndex(this.labelStatus, 0);
     this.Controls.SetChildIndex(this.cmbShowTimeAs, 0);
     this.Controls.SetChildIndex(this.textBoxDescription, 0);
     this.Controls.SetChildIndex(this.buttonOK, 0);
     this.Controls.SetChildIndex(this.buttonCancel, 0);
     this.Controls.SetChildIndex(this.buttonDelete, 0);
     this.Controls.SetChildIndex(this.buttonRecurrence, 0);
     this.Controls.SetChildIndex(this.radSeparator1, 0);
     this.Controls.SetChildIndex(this.radSeparator2, 0);
     ((System.ComponentModel.ISupportInitialize)(this.labelSubject)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelLocation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelBackground)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubject)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLocation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBackground)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelStartTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelEndTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateStart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeStart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEnd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllDay)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelResource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbResource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShowTimeAs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBoxDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonOK)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonRecurrence)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.listResources)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }