Having trouble getting help?
Contact Support
Contact Support
Read Only Mode support
10 Feb 20231 minute to read
Edit WPF can also be used as a static control in order to view only the contents of the file. ReadOnly mode is enabled/disabled by using the IsReadOnly property of the EditControl class. The following code is used to set the ReadOnly mode for EditControl.
<Window x:Class="UGDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:UGDemo"
mc:Ignorable="d"
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
Title="MainWindow" Height="450" Width="800">
<Grid>
<syncfusion:EditControl x:Name="editControl"
Text="This is Syncfusion's EditControl"
IsReadOnly="True"/>
</Grid>
</Window>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
EditControl editControl = new EditControl();
editControl.Text = "This is Syncfusion's EditControl";
editControl.IsReadOnly = true;
this.Content = editControl;
}
}