Skip to content

Commit 5da8ad0

Browse files
authored
2490-V100-KryptonComboBox-uses-incorrect-item-editor-string (#2529)
- Correct Items property Editor string - And the changelog
1 parent cb60543 commit 5da8ad0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Documents/Changelog/Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Resolved [#2492](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2492), `KryptonForm` does not display '(Administrator)' when elevated
1313
* Resolved [#2502](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2502), **[Breaking Change]** `KryptonCommandLinkButton` updates several properties and their behaviour. See issue for full details.
1414
* Resolved [#2495](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2495), `KryptonProgressBar` private field `_mementoContent` can be null.
15-
* Resolved [#2490](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2490), `KryptonComboBox` uses an incorrect Items editor string.
15+
* Resolved [#2490](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2490), `KryptonComboBox`, `KCheckListBox`, `KryptonListBox` & `KryptonDomainUpDown` use an incorrect Items editor string.
1616
* Resolved [#2487](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2487), `PaletteBase.PalettePaint` event is not synchronized toward the user.
1717
* Implemented [#2446](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2446), Add `build.yml` to `.github/workflows`.
1818
* Implemented [#1376](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1376), **[Breaking Change]** `KryptonTaskDialog` has had a full overhaul. Please refer to the ticket for full details, status and code sample to get started.

Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonCheckedListBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1501,7 +1501,7 @@ public virtual bool Sorted
15011501
/// </summary>
15021502
[Category(@"Data")]
15031503
[Description(@"The items in the KryptonCheckedListBox.")]
1504-
[Editor(@"System.Windows.Forms.Design.ListControlStringCollectionEditor", typeof(UITypeEditor))]
1504+
[Editor("System.Windows.Forms.Design.ListControlStringCollectionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))]
15051505
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
15061506
[MergableProperty(false)]
15071507
[Localizable(true)]

Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonDomainUpDown.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ public override ContextMenuStrip? ContextMenuStrip
10341034
[Category(@"Data")]
10351035
[Description(@"The allowable items of the domain up down.")]
10361036
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
1037-
[Editor(@"System.Windows.Forms.Design.StringCollectionEditor", typeof(UITypeEditor))]
1037+
[Editor("System.Windows.Forms.Design.ListControlStringCollectionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))]
10381038
[Localizable(true)]
10391039
public DomainUpDown.DomainUpDownItemCollection Items => DomainUpDown.Items;
10401040

Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonListBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ public virtual string DisplayMember
976976
/// </summary>
977977
[Category(@"Data")]
978978
[Description(@"The items in the KryptonListBox.")]
979-
[Editor(@"System.Windows.Forms.Design.ListControlStringCollectionEditor", typeof(UITypeEditor))]
979+
[Editor("System.Windows.Forms.Design.ListControlStringCollectionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))]
980980
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
981981
[MergableProperty(false)]
982982
[Localizable(true)]

0 commit comments

Comments
 (0)