Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1583-V85-Adding-control-to-form-causes-universe-not-found-exception #1627

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Documents/Help/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
=======

## 2024-07-xx - Build 2407 (Patch 1) - July 2024
* Resolved [#1583](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1583), `KryptonThemeComboBox` and `KrpytonThemeListBox` have the wrong designer assigned. Adds the `KryptonStubDesigner` internal class.
* Resolved [#1614](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1614), `KryptonMessageBox` throws an exception after Esc key is pressed.
* Resolved [#1599](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1599), `KryptonMessageBox` cuts off the last line.
* Resolved [#1600](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1600), `KryptonMessageBox` stays on top of other windows.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace Krypton.Toolkit
{
/// <summary>Allows the user to change themes using a <see cref="KryptonComboBox"/>.</summary>
/// <seealso cref="KryptonComboBox" />
[Designer(typeof(KryptonStubDesigner))]
public class KryptonThemeComboBox : KryptonComboBox
{
#region Instance Fields
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace Krypton.Toolkit
{
/// <summary>Allows the user to change themes using a <see cref="KryptonListBox"/>.</summary>
/// <seealso cref="KryptonListBox" />
[Designer(typeof(KryptonStubDesigner))]
public class KryptonThemeListBox : KryptonListBox
{
#region Instance Fields
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#region BSD License
/*
*
* New BSD 3-Clause License (https://github.com/Krypton-Suite/Standard-Toolkit/blob/master/LICENSE)
* Modifications by Peter Wagner(aka Wagnerp), Simon Coghlan(aka Smurf-IV) & (Giduac), et al. 2024 - 2024. All rights reserved.
*
*/
#endregion

namespace Krypton.Toolkit
{
/// <summary>
/// A designer stub derived from ControlDesigner with no further functionality.<br/>
/// Can be used to add to classes that inherit an unwanted or incompatible designer and disables the inherited action list a control can have at design time.
/// </summary>
internal class KryptonStubDesigner : ControlDesigner
{
}
}