Skip to content

Releases: bubuntoid/EasyDialog

7.0.0

12 Aug 00:04
Compare
Choose a tag to compare

upgrade projects to .NET 6;
add IDialogSet.Name field that sets label text (if it exists);
add HasNoButton method;
add overload for .HasName(string name, ContentAlignment align);
implement FolderBrowserDialog with methods AsFolderBrowserDialog, OnFolderSelected;
refactoring to file-scoped namespaces code style;

6.0.1

05 Jun 10:35
97deee3
Compare
Choose a tag to compare

Add HasWidth(int width) method;
Remove redundant property from IFormProvider (SecondColumnLeftPadding);

6.0.0

22 May 10:02
28ae93b
Compare
Choose a tag to compare

Move MaterialSkin theme to bubuntoid.EasyDialog.MaterialSkin;
Move MetroFramework theme to bubuntoid.EasyDialog.MetroFramework;
Add UseFormProvider to DialogContextConfigureOptionsBuilder;
Implement AsLabel extension;
Implement PlaceSeparatorBefore, PlaceSeparatorAfter extensions;
IFormProvider from now is public;

5.0.3

17 Apr 17:29
878df81
Compare
Choose a tag to compare

Add MaterialSkin.NET5 dependency (https://github.com/bubuntoid/MaterialSkin.NET5)

5.0.2

11 Apr 17:00
1a7a9e9
Compare
Choose a tag to compare

csproj nuget package additional content

5.0.1

05 Apr 18:15
Compare
Choose a tag to compare

hotfix

5.0.0

05 Apr 18:13
8adaaa9
Compare
Choose a tag to compare

Move to .NET 5

2.0.0

10 Jan 17:33
e90c5af
Compare
Choose a tag to compare

Implement button align: Left, Right, Center, Full Row;
DialogContextOptionsBuilder`s method Property(...) renamed to Item(...);
BaseDialogItem is now using inside of DialogContext only, for make your own items use DialogItem<TControl, TValue> where TCotrol is Systems.Windows.Form.Control;

1.0.3

03 Jan 12:38
23d68e5
Compare
Choose a tag to compare

Implement virtual OnClose() event;
DialogContext becomes DialogContext where TContext is your DialogContext inheritor;
Properties from now on configuring inside of a DialogContextOptionsBuilder (from OnConfiguring) by options.Property(...);
Rename Show() -> ShowDialog();
Close method is now public;
Code clean up

1.0.2

19 Dec 10:08
8ede96e
Compare
Choose a tag to compare

Add material themes and color schemes;
Material style now uses default label size and font;
Method .UseStyle() replaced with .UseMaterialStyle(), .UseMetroStyle() and .UseDefaultStyle();
Implement ListBoxItem