Articles in this section
Category / Section

How to disable undo operation in WPF DoubleTextBox?

1 min read

You can disable the undo operation by setting IsUndoEnabled property to true in WPF DoubleTextBox.

XAML

<Grid>
     <syncfusion:DoubleTextBox Name="DoubleText" Width="100" Height="50" IsUndoEnabled="False"></syncfusion:DoubleTextBox>
</Grid>

C#

//Code Explains how to disable Undo the Value in DoubleTextBox
namespace Double
{
   public partial class MainWindow : Window
   {
      public MainWindow()
      {
         InitializeComponent();
         DoubleText.IsUndoEnabled =False;
      }
   }
}

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied