Skip to content

Commit

Permalink
Oups hickup - used Default instead of DefaultValue
Browse files Browse the repository at this point in the history
  • Loading branch information
rappen committed Oct 9, 2024
1 parent ae98cf6 commit 2fe8346
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Rappen.XTB.Helpers/Controls/TriCheckBox.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Microsoft.Xrm.Sdk.Workflow;
using System.ComponentModel;
using System.ComponentModel;
using System.Windows.Forms;

namespace Rappen.XTB.Helpers.Controls
Expand Down Expand Up @@ -49,7 +48,7 @@ private void TriCheckBox_CheckStateChanged(object sender, System.EventArgs e)
}

[Category("Rappen")]
[Default("False")]
[DefaultValue("False")]
public string TextUnchecked
{
get => textUnchecked;
Expand All @@ -61,7 +60,7 @@ public string TextUnchecked
}

[Category("Rappen")]
[Default("True")]
[DefaultValue("True")]
public string TextChecked
{
get => textChecked;
Expand All @@ -73,7 +72,7 @@ public string TextChecked
}

[Category("Rappen")]
[Default("Indeterminate")]
[DefaultValue("Indeterminate")]
public string TextIndeterminate
{
get => textIndeterminate;
Expand Down

0 comments on commit 2fe8346

Please sign in to comment.