Calculator Settings in Windows Forms CurrencyEdit
26 Apr 20211 minute to read
A CurrencyEdit control has a text field and a Calculator button, pressing which will open a Calculator control. The below image illustrates the same.
The below properties which controls the behavior of the Calculator button.
this.currencyEdit1.CalculatorLayoutType = Syncfusion.Windows.Forms.Tools.CalculatorLayoutTypes.WindowsStandard;
this.currencyEdit1.CloseAction = Syncfusion.Windows.Forms.Tools.CalcActions.CalcOperatorEquals;
this.currencyEdit1.PopupCalculatorAlignment = Syncfusion.Windows.Forms.Tools.CalculatorPopupAlignment.Left;
this.currencyEdit1.ShowCalculator = true;
this.currencyEdit1.TransferFromCalculator = true;
this.currencyEdit1.TransferToCalculator = true;
Me.currencyEdit1.CalculatorLayoutType = Syncfusion.Windows.Forms.Tools.CalculatorLayoutTypes.WindowsStandard
Me.currencyEdit1.CloseAction = Syncfusion.Windows.Forms.Tools.CalcActions.CalcOperatorEquals
Me.currencyEdit1.PopupCalculatorAlignment = Syncfusion.Windows.Forms.Tools.CalculatorPopupAlignment.Left
Me.currencyEdit1.ShowCalculator = True
Me.currencyEdit1.TransferFromCalculator = True
Me.currencyEdit1.TransferToCalculator = True