TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Syed Qasim
1.7k
25
959
Value is not binding with entry control
Apr 21 2020 1:50 AM
This is my code
--------------------
<controls:BorderlessEntry
x:Name="EstimatedValue"
Text="{Binding EstimatedPrice , Mode=TwoWay, StringFormat='{0:N2}', UpdateSourceEventName=PropertyChanged }"
Style="{StaticResource EntryTextBoxStyle}" IsReadOnly="True" />
----------------------------------
public string EstimatedPrice
{
private set
{
if (_estimatedValue != value)
{
_estimatedValue = value;
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("EstimatedPrice"));
}
}
get
{
return _estimatedValue;
}
}
--------------------------------------
this.EstimatedPrice = result.ToString();
------------------
After assignment value is not showing on control. Please help to check this issue
Reply
Answers (
1
)
Run NopCommerce on several cPanel accounts using NexusCore
What is the Main Difference Between Insert and Update?