I want my label show the same word with a string.
The label in the .xaml file is like
...
<Label x:Name="Label_Test" Text="" />
...
And the string in the .cs file is like
...
string string_test = "";
...
...
protected async override void OnAppearing()
{
string_test = "test";
...
For this example. The label should show "test" when entering this page.
How could I implement this binding?
Thank you!