diff --git a/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterViewControl.Designer.cs b/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterViewControl.Designer.cs new file mode 100644 index 0000000..bf99d8b --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterViewControl.Designer.cs @@ -0,0 +1,37 @@ +namespace OwnChar.App.Desktop.UI.MainTabs.Controls +{ + partial class CharacterViewControl + { + /// + /// Erforderliche Designervariable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Verwendete Ressourcen bereinigen. + /// + /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Komponenten-Designer generierter Code + + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + } + + #endregion + } +} diff --git a/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterViewControl.cs b/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterViewControl.cs new file mode 100644 index 0000000..e7c629d --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterViewControl.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace OwnChar.App.Desktop.UI.MainTabs.Controls +{ + public partial class CharacterViewControl : UserControl + { + public CharacterViewControl() + { + InitializeComponent(); + } + } +} diff --git a/OwnChar.App.Desktop/UI/MainTabs/TabGroupsView.resx b/OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterViewControl.resx similarity index 100% rename from OwnChar.App.Desktop/UI/MainTabs/TabGroupsView.resx rename to OwnChar.App.Desktop/UI/MainTabs/Controls/CharacterViewControl.resx diff --git a/OwnChar.App.Desktop/UI/MainTabs/TabGroupsView.Designer.cs b/OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.Designer.cs similarity index 92% rename from OwnChar.App.Desktop/UI/MainTabs/TabGroupsView.Designer.cs rename to OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.Designer.cs index f566db0..c9aa6d1 100644 --- a/OwnChar.App.Desktop/UI/MainTabs/TabGroupsView.Designer.cs +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.Designer.cs @@ -1,6 +1,6 @@ -namespace OwnChar.App.Desktop.UI.MainTabs +namespace OwnChar.App.Desktop.UI.MainTabs.Controls { - partial class TabGroupsView + partial class GroupViewControl { /// /// Erforderliche Designervariable. diff --git a/OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.cs b/OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.cs new file mode 100644 index 0000000..730848a --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace OwnChar.App.Desktop.UI.MainTabs.Controls +{ + public partial class GroupViewControl : UserControl + { + public GroupViewControl() + { + InitializeComponent(); + } + } +} diff --git a/OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.resx b/OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/GroupViewControl.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.Designer.cs b/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.Designer.cs new file mode 100644 index 0000000..fbcd507 --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.Designer.cs @@ -0,0 +1,43 @@ +namespace OwnChar.App.Desktop.UI.MainTabs.Controls +{ + partial class MemberViewControl + { + /// + /// Erforderliche Designervariable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Verwendete Ressourcen bereinigen. + /// + /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Komponenten-Designer generierter Code + + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + SuspendLayout(); + // + // MemberViewControl + // + AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + Name = "MemberViewControl"; + ResumeLayout(false); + } + + #endregion + } +} diff --git a/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.cs b/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.cs new file mode 100644 index 0000000..8ca12c3 --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace OwnChar.App.Desktop.UI.MainTabs.Controls +{ + public partial class MemberViewControl : UserControl + { + public MemberViewControl() + { + InitializeComponent(); + } + } +} diff --git a/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.resx b/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/Controls/MemberViewControl.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/OwnChar.App.Desktop/UI/MainTabs/TabGroupsView.cs b/OwnChar.App.Desktop/UI/MainTabs/TabGroupsView.cs deleted file mode 100644 index ae1527b..0000000 --- a/OwnChar.App.Desktop/UI/MainTabs/TabGroupsView.cs +++ /dev/null @@ -1,22 +0,0 @@ -using OwnChar.App.Desktop.Api; -using Pilz.UI.Telerik.Dialogs; -using System.Windows.Forms; - -namespace OwnChar.App.Desktop.UI.MainTabs -{ - public partial class TabGroupsView : UserControl, ILoadContent - { - private readonly IMainWindowApi mainApi; - - public TabGroupsView(IMainWindowApi mainApi) - { - this.mainApi = mainApi; - InitializeComponent(); - } - - public void LoadContent() - { - // ... - } - } -} diff --git a/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.Designer.cs b/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.Designer.cs new file mode 100644 index 0000000..93c908b --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.Designer.cs @@ -0,0 +1,158 @@ +namespace OwnChar.App.Desktop.UI.MainTabs +{ + partial class TabLoginView + { + /// + /// Erforderliche Designervariable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Verwendete Ressourcen bereinigen. + /// + /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Komponenten-Designer generierter Code + + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); + radButton1 = new Telerik.WinControls.UI.RadButton(); + radLabel1 = new Telerik.WinControls.UI.RadLabel(); + radTextBoxControl1 = new Telerik.WinControls.UI.RadTextBoxControl(); + radTextBoxControl2 = new Telerik.WinControls.UI.RadTextBoxControl(); + radLabel2 = new Telerik.WinControls.UI.RadLabel(); + tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); + tableLayoutPanel1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)radButton1).BeginInit(); + ((System.ComponentModel.ISupportInitialize)radLabel1).BeginInit(); + ((System.ComponentModel.ISupportInitialize)radTextBoxControl1).BeginInit(); + ((System.ComponentModel.ISupportInitialize)radTextBoxControl2).BeginInit(); + ((System.ComponentModel.ISupportInitialize)radLabel2).BeginInit(); + tableLayoutPanel2.SuspendLayout(); + SuspendLayout(); + // + // tableLayoutPanel1 + // + tableLayoutPanel1.AutoSize = true; + tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + tableLayoutPanel1.ColumnCount = 2; + tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F)); + tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F)); + tableLayoutPanel1.Controls.Add(radTextBoxControl2, 1, 1); + tableLayoutPanel1.Controls.Add(radLabel2, 0, 1); + tableLayoutPanel1.Controls.Add(radTextBoxControl1, 1, 0); + tableLayoutPanel1.Controls.Add(radButton1, 1, 2); + tableLayoutPanel1.Controls.Add(radLabel1, 0, 0); + tableLayoutPanel1.Location = new System.Drawing.Point(129, 81); + tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0); + tableLayoutPanel1.Name = "tableLayoutPanel1"; + tableLayoutPanel1.RowCount = 3; + tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + tableLayoutPanel1.Size = new System.Drawing.Size(259, 86); + tableLayoutPanel1.TabIndex = 0; + // + // radButton1 + // + radButton1.Location = new System.Drawing.Point(106, 59); + radButton1.Name = "radButton1"; + radButton1.Size = new System.Drawing.Size(110, 24); + radButton1.TabIndex = 1; + radButton1.Text = "radButton1"; + // + // radLabel1 + // + radLabel1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right; + radLabel1.AutoSize = false; + radLabel1.Location = new System.Drawing.Point(3, 3); + radLabel1.Name = "radLabel1"; + radLabel1.Size = new System.Drawing.Size(97, 22); + radLabel1.TabIndex = 1; + radLabel1.Text = "radLabel1"; + // + // radTextBoxControl1 + // + radTextBoxControl1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right; + radTextBoxControl1.Location = new System.Drawing.Point(106, 3); + radTextBoxControl1.Name = "radTextBoxControl1"; + radTextBoxControl1.Size = new System.Drawing.Size(150, 22); + radTextBoxControl1.TabIndex = 2; + // + // radTextBoxControl2 + // + radTextBoxControl2.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right; + radTextBoxControl2.Location = new System.Drawing.Point(106, 31); + radTextBoxControl2.Name = "radTextBoxControl2"; + radTextBoxControl2.Size = new System.Drawing.Size(150, 22); + radTextBoxControl2.TabIndex = 1; + // + // radLabel2 + // + radLabel2.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right; + radLabel2.AutoSize = false; + radLabel2.Location = new System.Drawing.Point(3, 31); + radLabel2.Name = "radLabel2"; + radLabel2.Size = new System.Drawing.Size(97, 22); + radLabel2.TabIndex = 0; + radLabel2.Text = "radLabel2"; + // + // tableLayoutPanel2 + // + tableLayoutPanel2.ColumnCount = 3; + tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); + tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); + tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); + tableLayoutPanel2.Controls.Add(tableLayoutPanel1, 1, 1); + tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; + tableLayoutPanel2.Location = new System.Drawing.Point(0, 0); + tableLayoutPanel2.Name = "tableLayoutPanel2"; + tableLayoutPanel2.RowCount = 3; + tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F)); + tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle()); + tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 75F)); + tableLayoutPanel2.Size = new System.Drawing.Size(519, 412); + tableLayoutPanel2.TabIndex = 1; + // + // TabLoginView + // + AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + Controls.Add(tableLayoutPanel2); + Name = "TabLoginView"; + Size = new System.Drawing.Size(519, 412); + tableLayoutPanel1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)radButton1).EndInit(); + ((System.ComponentModel.ISupportInitialize)radLabel1).EndInit(); + ((System.ComponentModel.ISupportInitialize)radTextBoxControl1).EndInit(); + ((System.ComponentModel.ISupportInitialize)radTextBoxControl2).EndInit(); + ((System.ComponentModel.ISupportInitialize)radLabel2).EndInit(); + tableLayoutPanel2.ResumeLayout(false); + tableLayoutPanel2.PerformLayout(); + ResumeLayout(false); + } + + #endregion + + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; + private Telerik.WinControls.UI.RadTextBoxControl radTextBoxControl2; + private Telerik.WinControls.UI.RadLabel radLabel2; + private Telerik.WinControls.UI.RadTextBoxControl radTextBoxControl1; + private Telerik.WinControls.UI.RadButton radButton1; + private Telerik.WinControls.UI.RadLabel radLabel1; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2; + } +} diff --git a/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.cs b/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.cs new file mode 100644 index 0000000..8c38be0 --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace OwnChar.App.Desktop.UI.MainTabs +{ + public partial class TabLoginView : UserControl + { + public TabLoginView() + { + InitializeComponent(); + } + } +} diff --git a/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.resx b/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/OwnChar.App.Desktop/UI/MainTabs/TabLoginView.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/OwnChar.App.Desktop/UI/MainTabs/TabUserView.Designer.cs b/OwnChar.App.Desktop/UI/MainTabs/TabUserView.Designer.cs index c198209..4cae101 100644 --- a/OwnChar.App.Desktop/UI/MainTabs/TabUserView.Designer.cs +++ b/OwnChar.App.Desktop/UI/MainTabs/TabUserView.Designer.cs @@ -28,10 +28,69 @@ /// private void InitializeComponent() { - components = new System.ComponentModel.Container(); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + radPageView1 = new Telerik.WinControls.UI.RadPageView(); + radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage(); + radPageViewPage2 = new Telerik.WinControls.UI.RadPageViewPage(); + radPageViewPage3 = new Telerik.WinControls.UI.RadPageViewPage(); + ((System.ComponentModel.ISupportInitialize)radPageView1).BeginInit(); + radPageView1.SuspendLayout(); + SuspendLayout(); + // + // radPageView1 + // + radPageView1.Controls.Add(radPageViewPage1); + radPageView1.Controls.Add(radPageViewPage2); + radPageView1.Controls.Add(radPageViewPage3); + radPageView1.Dock = System.Windows.Forms.DockStyle.Fill; + radPageView1.Location = new System.Drawing.Point(0, 0); + radPageView1.Name = "radPageView1"; + radPageView1.SelectedPage = radPageViewPage1; + radPageView1.Size = new System.Drawing.Size(500, 500); + radPageView1.TabIndex = 0; + radPageView1.ViewMode = Telerik.WinControls.UI.PageViewMode.NavigationView; + ((Telerik.WinControls.UI.RadPageViewNavigationViewElement)radPageView1.GetChildAt(0)).ExpandedPaneWidth = 150; + // + // radPageViewPage1 + // + radPageViewPage1.ItemSize = new System.Drawing.SizeF(107F, 30F); + radPageViewPage1.Location = new System.Drawing.Point(151, 30); + radPageViewPage1.Name = "radPageViewPage1"; + radPageViewPage1.Size = new System.Drawing.Size(348, 469); + radPageViewPage1.Text = "Meine Charaktere"; + // + // radPageViewPage2 + // + radPageViewPage2.ItemSize = new System.Drawing.SizeF(107F, 30F); + radPageViewPage2.Location = new System.Drawing.Point(151, 30); + radPageViewPage2.Name = "radPageViewPage2"; + radPageViewPage2.Size = new System.Drawing.Size(348, 469); + radPageViewPage2.Text = "Meine Gruppen"; + // + // radPageViewPage3 + // + radPageViewPage3.ItemSize = new System.Drawing.SizeF(107F, 30F); + radPageViewPage3.Location = new System.Drawing.Point(151, 30); + radPageViewPage3.Name = "radPageViewPage3"; + radPageViewPage3.Size = new System.Drawing.Size(348, 469); + radPageViewPage3.Text = "Meine Freunde"; + // + // TabUserView + // + AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + Controls.Add(radPageView1); + Name = "TabUserView"; + Size = new System.Drawing.Size(500, 500); + ((System.ComponentModel.ISupportInitialize)radPageView1).EndInit(); + radPageView1.ResumeLayout(false); + ResumeLayout(false); } #endregion + + private Telerik.WinControls.UI.RadPageView radPageView1; + private Telerik.WinControls.UI.RadPageViewPage radPageViewPage1; + private Telerik.WinControls.UI.RadPageViewPage radPageViewPage2; + private Telerik.WinControls.UI.RadPageViewPage radPageViewPage3; } } diff --git a/OwnChar.App.Desktop/UI/MainTabs/TabUserView.resx b/OwnChar.App.Desktop/UI/MainTabs/TabUserView.resx index 1af7de1..af32865 100644 --- a/OwnChar.App.Desktop/UI/MainTabs/TabUserView.resx +++ b/OwnChar.App.Desktop/UI/MainTabs/TabUserView.resx @@ -1,17 +1,17 @@  - diff --git a/OwnChar.App.Desktop/UI/Windows/MainWindow.Designer.cs b/OwnChar.App.Desktop/UI/Windows/MainWindow.Designer.cs index a1975d2..f34107d 100644 --- a/OwnChar.App.Desktop/UI/Windows/MainWindow.Designer.cs +++ b/OwnChar.App.Desktop/UI/Windows/MainWindow.Designer.cs @@ -30,67 +30,65 @@ namespace OwnChar.App.Desktop.UI.Windows /// private void InitializeComponent() { - radTabbedFormControl1 = new Telerik.WinControls.UI.RadTabbedFormControl(); - radMenu1 = new Telerik.WinControls.UI.RadMenu(); - radMenuItem1 = new Telerik.WinControls.UI.RadMenuItem(); - radMenuItem2 = new Telerik.WinControls.UI.RadMenuItem(); - ((System.ComponentModel.ISupportInitialize)(this.radTabbedFormControl1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)radMenu1).BeginInit(); + radTabbedFormControl1 = new RadTabbedFormControl(); + radTabbedFormControl2 = new RadTabbedFormControl(); + radTabbedFormControlTab1 = new RadTabbedFormControlTab(); + ((System.ComponentModel.ISupportInitialize)radTabbedFormControl1).BeginInit(); + ((System.ComponentModel.ISupportInitialize)radTabbedFormControl2).BeginInit(); + radTabbedFormControl2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this).BeginInit(); SuspendLayout(); // // radTabbedFormControl1 // - this.radTabbedFormControl1.Location = new System.Drawing.Point(0, 0); - this.radTabbedFormControl1.Name = "radTabbedFormControl1"; - this.radTabbedFormControl1.ShowNewTabButton = false; - this.radTabbedFormControl1.Size = new System.Drawing.Size(768, 583); - this.radTabbedFormControl1.TabIndex = 0; - this.radTabbedFormControl1.TabWidth = 200; - this.radTabbedFormControl1.Text = "MainForm"; - ((Telerik.WinControls.UI.RadTabbedFormControlElement)(radTabbedFormControl1.GetChildAt(0))).Text = "MainForm"; - ((Telerik.WinControls.UI.RadQuickAccessOverflowButton)(radTabbedFormControl1.GetChildAt(0).GetChildAt(3).GetChildAt(1))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed; - ((Telerik.WinControls.UI.RadQuickAccessOverflowButton)(radTabbedFormControl1.GetChildAt(0).GetChildAt(4).GetChildAt(1))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed; + radTabbedFormControl1.Location = new System.Drawing.Point(0, 0); + radTabbedFormControl1.Name = "radTabbedFormControl1"; + radTabbedFormControl1.ShowNewTabButton = false; + radTabbedFormControl1.Size = new System.Drawing.Size(768, 583); + radTabbedFormControl1.TabIndex = 0; + radTabbedFormControl1.TabWidth = 200; + radTabbedFormControl1.Text = "MainForm"; + ((RadTabbedFormControlElement)radTabbedFormControl1.GetChildAt(0)).Text = "MainForm"; + ((RadQuickAccessOverflowButton)radTabbedFormControl1.GetChildAt(0).GetChildAt(3).GetChildAt(1)).Visibility = Telerik.WinControls.ElementVisibility.Collapsed; + ((RadQuickAccessOverflowButton)radTabbedFormControl1.GetChildAt(0).GetChildAt(4).GetChildAt(1)).Visibility = Telerik.WinControls.ElementVisibility.Collapsed; // - // radMenu1 + // radTabbedFormControl2 // - radMenu1.Items.AddRange(new Telerik.WinControls.RadItem[] { radMenuItem1, radMenuItem2 }); - radMenu1.Location = new System.Drawing.Point(0, 0); - radMenu1.Name = "radMenu1"; - radMenu1.Size = new System.Drawing.Size(292, 25); - radMenu1.TabIndex = 0; + radTabbedFormControl2.Controls.Add(radTabbedFormControlTab1); + radTabbedFormControl2.Location = new System.Drawing.Point(0, 0); + radTabbedFormControl2.Name = "radTabbedFormControl2"; + radTabbedFormControl2.SelectedTab = radTabbedFormControlTab1; + radTabbedFormControl2.Size = new System.Drawing.Size(780, 589); + radTabbedFormControl2.TabIndex = 1; + radTabbedFormControl2.Text = "RadForm1"; // - // radMenuItem1 + // radTabbedFormControlTab1 // - radMenuItem1.Name = "radMenuItem1"; - radMenuItem1.Text = "Datei"; - // - // radMenuItem2 - // - radMenuItem2.Name = "radMenuItem2"; - radMenuItem2.Text = "Modules"; + radTabbedFormControlTab1.Location = new System.Drawing.Point(1, 31); + radTabbedFormControlTab1.Name = "radTabbedFormControlTab1"; + radTabbedFormControlTab1.Size = new System.Drawing.Size(780, 559); + radTabbedFormControlTab1.Text = "Tab 1"; // // MainWindow // - AutoScaleBaseSize = new System.Drawing.Size(7, 15); AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - ClientSize = new System.Drawing.Size(292, 270); - Controls.Add(radMenu1); + ClientSize = new System.Drawing.Size(780, 589); + Controls.Add(radTabbedFormControl2); Name = "MainWindow"; + ShowIcon = false; Text = "RadForm1"; - ((System.ComponentModel.ISupportInitialize)radMenu1).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.radTabbedFormControl1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)radTabbedFormControl1).EndInit(); + ((System.ComponentModel.ISupportInitialize)radTabbedFormControl2).EndInit(); + radTabbedFormControl2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this).EndInit(); ResumeLayout(false); - PerformLayout(); } #endregion private Telerik.WinControls.UI.RadTabbedFormControl radTabbedFormControl1; - private Telerik.WinControls.UI.RadMenu radMenu1; - private Telerik.WinControls.UI.RadMenuItem radMenuItem1; - private Telerik.WinControls.UI.RadMenuItem radMenuItem2; + private RadTabbedFormControl radTabbedFormControl2; + private RadTabbedFormControlTab radTabbedFormControlTab1; } } \ No newline at end of file