1

したがって、2つのスケルトンが一致するかどうかをユーザーに通知するプログラムがありますが、問題は、をlabel介してにアクセスする必要があるということですclass。私が得続けるエラーは

Error1  An object reference is required for the
non-static field, method, or property 
'WpfApplication1.MainWindow.matchLabel'

これが私のコードにあるものです:

staticラベル_

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基本的に、でラベルを作成する方法、またはこれを行う別の方法があるかどうかを知りたいです。
前もって感謝します

4

3 に答える 3

2

@Danielが言ったように、複数のスレッドでUI要素を使用することは悪い考えです。

私の理解が正しければ、ドメインロジックの結果をユーザーに通知するだけです。これを行う方法は簡単です。イベントを作成します。

public event Action<string> MyEvent = delegate { };

            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ビューで

this.MydomainComponent.MyEvent += (x) => { this.matchLabel.Content = x; };

于 2012-05-01T02:25:23.663 に答える
1

これは悪い考えです。複数のスレッドでUI要素を作成しないでください。

MVVMパターンの実装を本当に検討する必要があります。これにより、コードがより分離され、テスト可能性が向上します。

于 2012-05-01T01:02:50.003 に答える
1

最善の策は、組み込みのWPFデータバインディングを使用することです。MVVMパターンを使用できますが、これが機能するために必須ではありません。

ウィンドウクラス(XAML)

<Window x:Class="WpfApplication2.MyWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MyWindow" Height="300" Width="300">
    <Grid>
        <Label Content="{Binding Path=MyLabelValue}" />
    </Grid>
</Window>

ウィンドウコードビハインド(コード)

using System.Windows;
using System.ComponentModel;

namespace WpfApplication2
{
    /// <summary>
    /// Interaction logic for MyWindow.xaml
    /// </summary>
    public partial class MyWindow : Window, INotifyPropertyChanged
    {
        public MyWindow()
        {
            InitializeComponent();

            DataContext = this;  // Sets context of binding to the class 
        }


        // Property for binding
        private string _mylabelvalue;
        public string MyLabelValue
        {
            get { return _mylabelvalue; }
            set 
            { 
                _mylabelvalue = value;
                if(PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("MyLabelValue"));
                }
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;
    }
}

ウィンドウでプロパティを設定/呼び出すときにこのメソッドを使用すると、ラベルの値を取得できます。プロパティを変更すると、データバインディングとINotifyPropertyChangedインターフェイスを介してUIの値が更新されます。リフレクションを介してこれを行うことと、ブログにMVVMパターンを使用することに関するセクションがあります。

http://tsells.wordpress.com/category/mvvm/

于 2012-05-01T02:12:13.993 に答える