2022-07-23 14:43:57 +02:00
namespace Flowframes.Forms
{
partial class MessageForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System . ComponentModel . IContainer components = null ;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose ( bool disposing )
{
if ( disposing & & ( components ! = null ) )
{
components . Dispose ( ) ;
}
base . Dispose ( disposing ) ;
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent ( )
{
this . textLabel = new System . Windows . Forms . Label ( ) ;
2022-07-24 22:30:30 +02:00
this . btn1 = new HTAlt . WinForms . HTButton ( ) ;
this . btn2 = new HTAlt . WinForms . HTButton ( ) ;
this . btn3 = new HTAlt . WinForms . HTButton ( ) ;
2022-07-23 14:43:57 +02:00
this . SuspendLayout ( ) ;
//
// textLabel
//
this . textLabel . AutoSize = true ;
2024-12-31 19:08:28 +01:00
this . textLabel . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
2022-07-23 14:43:57 +02:00
this . textLabel . ForeColor = System . Drawing . Color . White ;
this . textLabel . Location = new System . Drawing . Point ( 15 , 15 ) ;
this . textLabel . Margin = new System . Windows . Forms . Padding ( 8 , 0 , 3 , 0 ) ;
this . textLabel . Name = "textLabel" ;
2024-12-31 19:08:28 +01:00
this . textLabel . Size = new System . Drawing . Size ( 0 , 16 ) ;
2022-07-23 14:43:57 +02:00
this . textLabel . TabIndex = 8 ;
//
2022-07-24 22:30:30 +02:00
// btn1
2022-07-23 14:43:57 +02:00
//
2022-07-24 22:30:30 +02:00
this . btn1 . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn1 . BackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) ) ;
this . btn1 . FlatAppearance . BorderSize = 0 ;
this . btn1 . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . btn1 . ForeColor = System . Drawing . Color . White ;
this . btn1 . Location = new System . Drawing . Point ( 232 , 126 ) ;
this . btn1 . Name = "btn1" ;
this . btn1 . Size = new System . Drawing . Size ( 100 , 23 ) ;
this . btn1 . TabIndex = 46 ;
this . btn1 . Text = "OK" ;
this . btn1 . UseVisualStyleBackColor = false ;
this . btn1 . Click + = new System . EventHandler ( this . btn1_Click ) ;
//
// btn2
//
this . btn2 . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn2 . BackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) ) ;
this . btn2 . FlatAppearance . BorderSize = 0 ;
this . btn2 . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . btn2 . ForeColor = System . Drawing . Color . White ;
this . btn2 . Location = new System . Drawing . Point ( 126 , 126 ) ;
this . btn2 . Name = "btn2" ;
this . btn2 . Size = new System . Drawing . Size ( 100 , 23 ) ;
this . btn2 . TabIndex = 47 ;
this . btn2 . Text = "OK" ;
this . btn2 . UseVisualStyleBackColor = false ;
this . btn2 . Click + = new System . EventHandler ( this . btn2_Click ) ;
//
// btn3
//
this . btn3 . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn3 . BackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 64 ) ) ) ) ) ;
this . btn3 . FlatAppearance . BorderSize = 0 ;
this . btn3 . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . btn3 . ForeColor = System . Drawing . Color . White ;
this . btn3 . Location = new System . Drawing . Point ( 20 , 126 ) ;
this . btn3 . Name = "btn3" ;
this . btn3 . Size = new System . Drawing . Size ( 100 , 23 ) ;
this . btn3 . TabIndex = 48 ;
this . btn3 . Text = "OK" ;
this . btn3 . UseVisualStyleBackColor = false ;
this . btn3 . Click + = new System . EventHandler ( this . btn3_Click ) ;
2022-07-23 14:43:57 +02:00
//
// MessageForm
//
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . BackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 32 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 32 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 32 ) ) ) ) ) ;
this . ClientSize = new System . Drawing . Size ( 344 , 161 ) ;
2022-07-24 22:30:30 +02:00
this . Controls . Add ( this . btn3 ) ;
this . Controls . Add ( this . btn2 ) ;
this . Controls . Add ( this . btn1 ) ;
2022-07-23 14:43:57 +02:00
this . Controls . Add ( this . textLabel ) ;
this . FormBorderStyle = System . Windows . Forms . FormBorderStyle . FixedToolWindow ;
this . MaximizeBox = false ;
this . MinimizeBox = false ;
this . Name = "MessageForm" ;
this . ShowIcon = false ;
this . StartPosition = System . Windows . Forms . FormStartPosition . CenterScreen ;
2022-07-24 22:30:30 +02:00
this . FormClosing + = new System . Windows . Forms . FormClosingEventHandler ( this . MessageForm_FormClosing ) ;
2022-07-23 14:43:57 +02:00
this . Load + = new System . EventHandler ( this . MessageForm_Load ) ;
this . ResumeLayout ( false ) ;
this . PerformLayout ( ) ;
}
#endregion
private System . Windows . Forms . Label textLabel ;
2022-07-24 22:30:30 +02:00
private HTAlt . WinForms . HTButton btn1 ;
private HTAlt . WinForms . HTButton btn2 ;
private HTAlt . WinForms . HTButton btn3 ;
2022-07-23 14:43:57 +02:00
}
}