Why in Xaml do not work tips with the names of the properties of VM-ki? But if you enter the correct name of the property, then everything compiles and works well.
I bind VM to the window like this:
public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); new MainWindow() { DataContext = new MainVm() }.Show(); } } public class MainVm : VmBase { private string _input; public string Input { get { return _input; } set { _input = value; OnPropertyChanged(); } } } <Window x:Class="WarehouseClient2.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" Title="MainWindow" Width="525" Height="350" mc:Ignorable="d"> <Grid> <TextBox Text="{Binding Input}"></TextBlock> </Grid> 