We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Binding Watermark property generate an error: Object of type 'System.Windows.Data.Binding' cannot be converted to type 'System.String'
in modelview i have public string Login_filter { get { return login_filter; } set { login_filter = value; OnPropertyChanged("Login_filter"); } }
in view
xmlns:localWM="clr-namespace:WPFWaterMarkTextBox;assembly=WPFWaterMarkTextBox"
<localWM:TextBoxLabelHrzs Name="name_filter" Watermark="{Binding Name_filter}" TextProp="{Binding Name_filter, Mode=TwoWay}" />
The text was updated successfully, but these errors were encountered:
maybe problem is that my proyect is .net core3.1 ???
Sorry, something went wrong.
No branches or pull requests
Binding Watermark property generate an error:
Object of type 'System.Windows.Data.Binding' cannot be converted to type 'System.String'
in modelview i have
public string Login_filter {
get { return login_filter; }
set
{
login_filter = value;
OnPropertyChanged("Login_filter");
}
}
in view
xmlns:localWM="clr-namespace:WPFWaterMarkTextBox;assembly=WPFWaterMarkTextBox"
<localWM:TextBoxLabelHrzs
Name="name_filter"
Watermark="{Binding Name_filter}"
TextProp="{Binding Name_filter, Mode=TwoWay}"
/>
The text was updated successfully, but these errors were encountered: