How to make a label static(如何使标签静态化)
问题描述
所以我有一个程序告诉用户两个骨架是否匹配,但问题是我需要通过 class 访问 label.我不断收到的错误是
So I have a program in which I am telling the user whether two skeletons match, but the thing is that I need to access the label via a class. The error I keep getting is
Error1 An object reference is required for the
non-static field, method, or property
'WpfApplication1.MainWindow.matchLabel'
这是我的代码中的内容:
静态标签
Here's what I have in my code:
The static Label
static Label matching
{
get { return matchLabel; } //errors here
set { matchLabel = value; } //and here
}
类
private class Scan
{
private void Start()
{
Skeleton skeleton = new Skeleton();
if (PersonDetected == true)
{
int SkeletonID2 = skeleton.TrackingId;
if (SkeletonID1 == SkeletonID2)
{
matching.Content = "Your IDs are Matching!";
}
else if (SkeletonID2 != SkeletonID1)
{
matching.Content = "Your IDs don't Match.";
}
}
}
private void Stop()
{
if (PersonDetected == true)
{
matching.Content = "Scan Aborted";
}
}
}
基本上我想知道如何在 wpf static 中制作标签,或者是否有其他方法可以做到这一点.
提前致谢
Basically I want to know how to make the label in wpf static, or if there is another way to do this.
Thanks in advance
推荐答案
我认为您可以使用另一种方法,就像@Daniel 所说,在多个线程上使用 UI 元素是一个坏主意.
I think that you could use another approach, like @Daniel said, using UI elements on multiple threads is a bad idea.
如果我的理解是正确的,你只是想通知用户你的域逻辑的结果,我会做的方式很简单,创建一个事件:
If my understanding is correct, you just want to notify to the user the result from your domain logic, the way I would do it is simple, create an event:
公共事件动作
if (SkeletonID1 == SkeletonID2)
{
this.MyEvent("Your IDs are Matching!");
}
else if (SkeletonID2 != SkeletonID1)
{
this.MyEvent("Your IDs don't Match.");
}
if (PersonDetected == true)
{
this.MyEvent("Scan Aborted");
}
在您的 WPF 视图中
In your WPF view
this.MydomainComponent.MyEvent += (x) =>{ this.matchLabel.Content = x;};
这篇关于如何使标签静态化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使标签静态化
基础教程推荐
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
