我的c#代码上有一个变量,我想将其发送到xaml文件上的gui。
我已经尝试了对下面提供的代码进行的操作,但是在gui上没有任何价值。
private const int test = 0;
public string Test
{
get
{
return test;
}
}
var res = re.Execute();
if (res != null && res.Messages != null)
{
Console.WriteLine("\n\nHá {0} emails neste separador!\n", res.Messages.Count);
//Console.ReadKey();
int test = res.Messages.Count;
}
}
在.xaml中
<Label Foreground="Black" Content="{Binding Path=Test}"/>
我该怎么办?