Bagikan melalui


NativeActivity Konstruktor

Definisi

Saat diimplementasikan di kelas turunan, membuat instans baru dari kelas turunan.

protected:
 NativeActivity();
protected NativeActivity ();
Protected Sub New ()

Contoh

Contoh kode berikut menunjukkan pembuatan kelas yang mewarisi dari NativeActivity<TResult>. Contoh ini berasal dari Komposit Kustom menggunakan sampel Aktivitas Asli .

public sealed class MySequence : NativeActivity
{
    Collection<Activity> children;
    Collection<Variable> variables;
    Variable<int> currentIndex;
    CompletionCallback onChildComplete;

    public MySequence()
        : base()
    {
        this.children = new Collection<Activity>();
        this.variables = new Collection<Variable>();
        this.currentIndex = new Variable<int>();
    }

    public Collection<Activity> Activities
    {
        get
        {
            return this.children;
        }
    }

    public Collection<Variable> Variables
    {
        get
        {
            return this.variables;
        }
    }

Berlaku untuk