79205117

Date: 2024-11-19 21:35:34
Score: 1
Natty:
Report link

I was running into the same issue and my issue was using x:Bind.

I needed to use Binding and change the Mode:

<TextBlock Name="avgTimeDisplay" Text="{Binding AvgTime, Mode=TwoWay}" Visibility="{Binding LabelVisible, Mode=TwoWay}" ></TextBlock>

This along with setting my ViewModel:

public string AvgTime
{
    get => avgTime;
    set => SetProperty(ref avgTime, value);
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Queen Mochi