DotNet 4.8.1 build of DotNetBar

This commit is contained in:
2025-02-07 10:35:23 -05:00
parent 33439b63a0
commit 6b0a5d60f4
2609 changed files with 989814 additions and 7 deletions

View File

@@ -0,0 +1,86 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
namespace DevComponents.DotNetBar.Design
{
/// <summary>
/// Summary description for WizardPageNavigationControl.
/// </summary>
[ToolboxItem(false)]
internal class WizardPageNavigationControl : System.Windows.Forms.UserControl
{
public System.Windows.Forms.LinkLabel LinkBack;
public System.Windows.Forms.LinkLabel LinkNext;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public WizardPageNavigationControl()
{
// This call is required by the Windows.Forms Form Designer.
InitializeComponent();
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(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.LinkBack = new System.Windows.Forms.LinkLabel();
this.LinkNext = new System.Windows.Forms.LinkLabel();
this.SuspendLayout();
//
// LinkBack
//
this.LinkBack.Dock = System.Windows.Forms.DockStyle.Left;
this.LinkBack.Name = "LinkBack";
this.LinkBack.Size = new System.Drawing.Size(45, 16);
this.LinkBack.TabIndex = 0;
this.LinkBack.TabStop = true;
this.LinkBack.Text = "< Back";
//
// LinkNext
//
this.LinkNext.Dock = System.Windows.Forms.DockStyle.Fill;
this.LinkNext.Location = new System.Drawing.Point(40, 0);
this.LinkNext.Name = "LinkNext";
this.LinkNext.Size = new System.Drawing.Size(45, 16);
this.LinkNext.TabIndex = 1;
this.LinkNext.TabStop = true;
this.LinkNext.Text = "Next >";
//
// WizardPageNavigationControl
//
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.LinkNext,
this.LinkBack});
this.Name = "WizardPageNavigationControl";
this.Size = new System.Drawing.Size(90, 16);
this.ResumeLayout(false);
}
#endregion
}
}