It’s hard to guess without code, but you should be able to set the BindingMode to OneWay.
<TextBox Text="{Binding Path=MyProperty, Mode=OneWay}" />
or from code:
Binding binding = new Binding();
binding.Mode = BindingMode.OneWay;
Related Contents:
- WPF Error: Cannot find governing FrameworkElement for target element
- How to bind multiple values to a single WPF TextBlock?
- Bind to a value defined in the Settings
- RelativeSource binding from a ToolTip or ContextMenu
- How to preserve control state within tab items in a TabControl
- Passing two command parameters using a WPF binding
- How can I move a WPF Popup when its anchor element moves?
- WPF Treeview Databinding Hierarchal Data with mixed types
- In WPF, why doesn’t TemplateBinding work where Binding does?
- WPF StringFormat={0:C} showing as dollars
- WPF Attached Property Data Binding
- WPF StringFormat on Label Content
- DataTrigger where value is NOT null?
- WPF Binding to local variable
- Are “{Binding Path=.}” and “{Binding}” really equal
- How to display a different value for dropdown list values/selected item in a WPF ComboBox?
- WPF textblock binding with List
- Datacontext conflicts
- Bind an element to two sources
- TextBox and default Button binding does update too late
- ComboBox.SelectedValue not updating from binding source
- Binding WPF DataGrid to DataTable using TemplateColumns
- How to bind a TextBlock to a resource containing formatted text?
- Binding errors not showing on output window
- WPF Binding StringFormat Short Date String
- Binding only part of the margin property of WPF control
- Two combobox with same ItemsSource of ObservableCollection
- WPF Programming Methodology
- Is it possible to set code behind a resource dictionary in WPF for event handling?
- INotifyPropertyChanged vs. DependencyProperty in ViewModel
- How do I get the current mouse screen coordinates in WPF?
- DependencyProperty getter/setter not being called
- WPF Image Pan, Zoom and Scroll with layers on a canvas
- WPF CommandParameter is NULL first time CanExecute is called
- How to create a semi transparent window in WPF that allows mouse events to pass through
- Is there a way to use data-template inheritance in WPF?
- WPF ListView – detect when selected item is clicked
- WPF Binding – Default value for empty string
- ItemsControl with multiple DataTemplates for a viewmodel
- How to disable highlighting on listbox but keep selection?
- Finding the handle to a WPF window
- What’s the best approach to printing/reporting from WPF? [closed]
- When Clearing an ObservableCollection, There are No Items in e.OldItems
- How to create user define (new) event for user control in WPF ?one small example
- Mouse event on transparent background
- How to show row-number in first column of WPF Datagrid
- Difference between Label and TextBlock
- Displaying html from string in WPF WebBrowser control
- Can WPF and WinForms be mixed within an application?
- Setting the Visibility of an Element to Collapsed when Storyboard completes using XAML