diff --git a/InfoBox/Controls/Button.cs b/InfoBox/Controls/Button.cs index 040595b..0269b6c 100644 --- a/InfoBox/Controls/Button.cs +++ b/InfoBox/Controls/Button.cs @@ -195,7 +195,7 @@ public SideBorder SideBorder /// Gets or sets the border width /// /// The width of the side border. - [Category("Side Border"), Description("Defines the width of the side border")] + [Category("Side Border"), Description("Defines the width of the side border"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public int SideBorderWidth { get @@ -219,7 +219,7 @@ public int SideBorderWidth /// Gets or sets the top border color /// /// The top color of the side border. - [Category("Side Border"), Description("Defines the top color of the side border")] + [Category("Side Border"), Description("Defines the top color of the side border"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public Color SideBorderTopColor { get @@ -238,7 +238,7 @@ public Color SideBorderTopColor /// Gets or sets the bottom border color /// /// The bottom color of the side border. - [Category("Side Border"), Description("Defines the bottom color of the side border")] + [Category("Side Border"), Description("Defines the bottom color of the side border"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public Color SideBorderBottomColor { get @@ -256,7 +256,7 @@ public Color SideBorderBottomColor /// /// Gets or sets the text color when the button is disabled /// - [Category("Appearance"), Description("Defines the text color when the button is disabled")] + [Category("Appearance"), Description("Defines the text color when the button is disabled"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public Color DisabledForeColor { get @@ -274,7 +274,7 @@ public Color DisabledForeColor /// /// Gets or sets the alignment of the text /// - [Category("Appearance"), Description("Defines the alignment of the text")] + [Category("Appearance"), Description("Defines the alignment of the text"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public ContentAlignment TextAlign { get @@ -293,7 +293,7 @@ public ContentAlignment TextAlign /// /// Gets or sets the button text /// - [Category("Appearance"), Description("Defines the text of the button"), Browsable(true)] + [Category("Appearance"), Description("Defines the text of the button"), Browsable(true), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public override string Text { get @@ -312,7 +312,7 @@ public override string Text /// Gets or sets a value indicating whether the button remains clicked after mouse button is released. /// /// true if the button remains clicked after mouse button is released; otherwise, false. - [Category("Behavior"), Description("Defines if the button remains clicked after mouse button is released"), DefaultValue("false")] + [Category("Behavior"), Description("Defines if the button remains clicked after mouse button is released"), DefaultValue("false"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public bool PersistantMode { get @@ -331,7 +331,7 @@ public bool PersistantMode /// Gets or sets a value indicating whether this is pushed. /// /// true if pushed; otherwise, false. - [Category("Behavior"), Description("Defines if button appears as pushed"), Browsable(true)] + [Category("Behavior"), Description("Defines if button appears as pushed"), Browsable(true), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public bool Pushed { get diff --git a/InfoBox/Controls/Label.cs b/InfoBox/Controls/Label.cs index 3f37832..48cca6d 100644 --- a/InfoBox/Controls/Label.cs +++ b/InfoBox/Controls/Label.cs @@ -53,7 +53,7 @@ public Label() /// Gets or sets the text color when the label is disabled /// /// The color of the disabled fore. - [Category("Appearance"), Description("Defines the text color when the label is disabled")] + [Category("Appearance"), Description("Defines the text color when the label is disabled"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public Color DisabledForeColor { get @@ -72,7 +72,7 @@ public Color DisabledForeColor /// Gets or sets the alignment of the text /// /// The text align. - [Category("Appearance"), Description("Defines the alignment of the text")] + [Category("Appearance"), Description("Defines the alignment of the text"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public ContentAlignment TextAlign { get @@ -93,7 +93,7 @@ public ContentAlignment TextAlign /// /// /// A . - [Category("Appearance"), Description("Defines the text of the label"), Browsable(true)] + [Category("Appearance"), Description("Defines the text of the label"), Browsable(true), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public override string Text { get diff --git a/InfoBox/Controls/Panel.cs b/InfoBox/Controls/Panel.cs index e6ba930..4a9e05d 100644 --- a/InfoBox/Controls/Panel.cs +++ b/InfoBox/Controls/Panel.cs @@ -61,8 +61,7 @@ public Panel() /// Gets or sets if a custom border is shown on the sides of the control /// /// The side border. - [Category("Side Border"), Description("Defines if a special side border should be displayed"), - DefaultValue("None")] + [Category("Side Border"), Description("Defines if a special side border should be displayed"), DefaultValue("None")] public SideBorder SideBorder { get @@ -81,7 +80,7 @@ public SideBorder SideBorder /// Gets or sets the border width /// /// The width of the side border. - [Category("Side Border"), Description("Defines the width of the side border")] + [Category("Side Border"), Description("Defines the width of the side border"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public int SideBorderWidth { get @@ -105,7 +104,7 @@ public int SideBorderWidth /// Gets or sets the top border color /// /// The top color of the side border. - [Category("Side Border"), Description("Defines the top color of the side border")] + [Category("Side Border"), Description("Defines the top color of the side border"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public Color SideBorderTopColor { get @@ -124,7 +123,7 @@ public Color SideBorderTopColor /// Gets or sets the bottom border color /// /// The bottom color of the side border. - [Category("Side Border"), Description("Defines the bottom color of the side border")] + [Category("Side Border"), Description("Defines the bottom color of the side border"), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public Color SideBorderBottomColor { get diff --git a/InfoBox/InfoBox.nuspec b/InfoBox/InfoBox.nuspec index f2ad5ae..72f478b 100644 --- a/InfoBox/InfoBox.nuspec +++ b/InfoBox/InfoBox.nuspec @@ -17,16 +17,17 @@ InformationBox is the simplest and easiest way to create personalized MessageBox Stop wasting time developing your own custom MessageBox, everything you need is already available. Just customize your MessageBox using the visual designer and the code is automatically generated ! InformationBox (.NET 4.0+) is a flexible alternative to the default MessageBox included in the System.Windows.Forms namespace - - Added support for .NET 8.0 (Windows) + - Removed support for .NET 7.0 (Windows) + - Added support for .NET 9.0 (Windows) - Copyright 2022 + Copyright 2024 en-US MessageBox Winforms - + README.md @@ -38,12 +39,12 @@ Stop wasting time developing your own custom MessageBox, everything you need is - - - + + + diff --git a/InfoBoxCore.Designer.Tests/InfoBoxCore.Designer.Tests.csproj b/InfoBoxCore.Designer.Tests/InfoBoxCore.Designer.Tests.csproj index 7e6b6e4..6db181b 100644 --- a/InfoBoxCore.Designer.Tests/InfoBoxCore.Designer.Tests.csproj +++ b/InfoBoxCore.Designer.Tests/InfoBoxCore.Designer.Tests.csproj @@ -1,8 +1,7 @@  - net8.0-windows - + net9.0-windows false diff --git a/InfoBoxCore.Designer/InfoBoxCore.Designer.csproj b/InfoBoxCore.Designer/InfoBoxCore.Designer.csproj index d91d645..e469f29 100644 --- a/InfoBoxCore.Designer/InfoBoxCore.Designer.csproj +++ b/InfoBoxCore.Designer/InfoBoxCore.Designer.csproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows;net7.0-windows;net8.0-windows + net6.0-windows;net8.0-windows;net9.0-windows true true false diff --git a/InfoBoxCore/InfoBoxCore.csproj b/InfoBoxCore/InfoBoxCore.csproj index c4cf514..64de23c 100644 --- a/InfoBoxCore/InfoBoxCore.csproj +++ b/InfoBoxCore/InfoBoxCore.csproj @@ -2,7 +2,7 @@ Library - net6.0-windows;net7.0-windows;net8.0-windows + net6.0-windows;net8.0-windows;net9.0-windows true false false