mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-21 03:54:07 +02:00
Configuration
Core
Controls
ControlExtensions.cs
FlatButton.cs
FlatProgressBar.Designer.cs
FlatProgressBar.cs
TabButton.Designer.cs
TabButton.cs
TabPanel.Designer.cs
TabPanel.cs
Handling
Other
Utils
FormBrowser.Designer.cs
FormBrowser.cs
FormBrowser.resx
FormNotification.Designer.cs
FormNotification.cs
TrayIcon.Designer.cs
TrayIcon.cs
Libraries
Plugins
Properties
Resources
Updates
bld
.gitignore
LICENSE.md
Program.cs
README.md
Reporter.cs
TweetDck.csproj
TweetDck.sln
_postbuild.bat
69 lines
2.8 KiB
C#
69 lines
2.8 KiB
C#
namespace TweetDck.Core.Controls {
|
|
partial class TabPanel {
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing) {
|
|
if (disposing && (components != null)) {
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent() {
|
|
this.panelButtons = new System.Windows.Forms.Panel();
|
|
this.panelContent = new System.Windows.Forms.Panel();
|
|
this.SuspendLayout();
|
|
//
|
|
// panelButtons
|
|
//
|
|
this.panelButtons.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panelButtons.Location = new System.Drawing.Point(0, 0);
|
|
this.panelButtons.Margin = new System.Windows.Forms.Padding(0);
|
|
this.panelButtons.Name = "panelButtons";
|
|
this.panelButtons.Size = new System.Drawing.Size(640, 30);
|
|
this.panelButtons.TabIndex = 0;
|
|
//
|
|
// panelContent
|
|
//
|
|
this.panelContent.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.panelContent.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panelContent.Location = new System.Drawing.Point(0, 29);
|
|
this.panelContent.Margin = new System.Windows.Forms.Padding(0);
|
|
this.panelContent.Name = "panelContent";
|
|
this.panelContent.Size = new System.Drawing.Size(640, 451);
|
|
this.panelContent.TabIndex = 1;
|
|
//
|
|
// TabPanel
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.panelContent);
|
|
this.Controls.Add(this.panelButtons);
|
|
this.Name = "TabPanel";
|
|
this.Size = new System.Drawing.Size(640, 480);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panelButtons;
|
|
private System.Windows.Forms.Panel panelContent;
|
|
}
|
|
}
|