Winform.AutoSizeHelper
1.0.5
See the version list below for details.
dotnet add package Winform.AutoSizeHelper --version 1.0.5
NuGet\Install-Package Winform.AutoSizeHelper -Version 1.0.5
<PackageReference Include="Winform.AutoSizeHelper" Version="1.0.5" />
paket add Winform.AutoSizeHelper --version 1.0.5
#r "nuget: Winform.AutoSizeHelper, 1.0.5"
// Install Winform.AutoSizeHelper as a Cake Addin #addin nuget:?package=Winform.AutoSizeHelper&version=1.0.5 // Install Winform.AutoSizeHelper as a Cake Tool #tool nuget:?package=Winform.AutoSizeHelper&version=1.0.5
Winform.AutoSizeHelper
Introduction
A Control Layout Adaptive Resolution Assistant Class for Winform.
Download
- GitHub: https://github.com/hlz2516/Winform.AutoSizeHelper
- Nuget: https://www.nuget.org/packages/Winform.AutoSizeHelper
Function
- When the container control changes its size, the controls inside the container are arranged adaptively according to their original layout
- When dynamically adding a new control within the container, the size,position and font can be adjusted to fit the layout by calling methods
- If there are nested layouts within the layout, the nested layouts will also be adaptive
- support autosize the listview(only column width)
How To Use
Basic Use
Design your Form in Form Designer,for example:
Disable the AutoScaleMode property in Form manually. Find Form1.Designer.cs and open it, press Ctrl + F to search string:"AutoScaleMode",then you can see this line:
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
Modify it to System.Windows.Forms.AutoScaleMode.None.
- Create a AutoSizeHelper and set the container in Form1's constructor
using AutoSizeTools;
namespace XXX{
public partial class Form1 : Form{
AutoSizeHelper helper;
public Form1()
{
InitializeComponent();
helper = new AutoSizeHelper();
helper.SetContainer(this);
}
}
}
- Run your application,and maximize the application window,then you can see:
Dynamically Adding New Controls
if we want to dynamically Add a new button which between button2 and button3 by clicking button6, we can achieve this in the following way:
- double click button6 in form deigner,in the following methed,we write code like this:
private void button6_Click(object sender, EventArgs e)
{
Button newBtn = new Button();
newBtn.Name = "button7";
newBtn.Location = new Point(568, 12);
newBtn.Size = new System.Drawing.Size(75, 23);
newBtn.Text = "button7";
//apply button6's font to newBtn font
newBtn.Font = new Font(button6.Font.FontFamily, button6.Font.Size);
newBtn.UseVisualStyleBackColor = true;
this.Controls.Add(newBtn);
helper.AddNewControl(newBtn);
helper.UpdateControls();
}
- Run the application,click button6,you can see button7 showed between button2 and button3. then you can maximize or minimize the application window,the button7 always adapt to the current layout.
For more examples, please see github repository.
Tips
- There are some differences between version 1.05 and previous versions(1.0.0~1.0.3). Specifically,I added the AutoSizeHelperEx class in version 1.0.5, which allows you to adjust the font scaling ratio on different resolution screens
- this tool is suitable for Third party package's Multi page framework(e.g SunnyUI)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0-windows7.0 is compatible. net7.0-windows was computed. net8.0-windows was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.7.2
- No dependencies.
-
net6.0-windows7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.