Upgrading to .net 6
This commit is contained in:
parent
738c6e20ea
commit
32a192c2b8
155 changed files with 2030 additions and 2536 deletions
|
|
@ -33,7 +33,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
{
|
||||
public abstract class NumberField : UIField
|
||||
{
|
||||
protected MHNumberEdit numberEdit;
|
||||
protected ThemedNumberEdit numberEdit;
|
||||
private readonly ThemeConfig theme;
|
||||
|
||||
protected bool AllowNegatives { get; set; } = true;
|
||||
|
|
@ -47,7 +47,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
|
||||
public override void Initialize(int tabIndex)
|
||||
{
|
||||
numberEdit = new MHNumberEdit(0, theme, pixelWidth: ControlWidth, allowDecimals: this.AllowDecimals, allowNegatives: this.AllowNegatives, tabIndex: tabIndex)
|
||||
numberEdit = new ThemedNumberEdit(0, theme, pixelWidth: ControlWidth, allowDecimals: this.AllowDecimals, allowNegatives: this.AllowNegatives, tabIndex: tabIndex)
|
||||
{
|
||||
ToolTipText = this.HelpText,
|
||||
SelectAllOnFocus = true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue