csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
// -----------------------------------------------------------------------
|
|
// <copyright file="SubscribeCheck.cs" company="Steven Kirk">
|
|
// Copyright 2014 MIT Licence. See licence.md for more information.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace Perspex.Styling.UnitTests
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Perspex.Styling;
|
|
|
|
public abstract class TestTemplatedControl : ITemplatedControl, IStyleable
|
|
{
|
|
public abstract Classes Classes
|
|
{
|
|
get;
|
|
}
|
|
|
|
public abstract string Id
|
|
{
|
|
get;
|
|
}
|
|
|
|
public abstract ITemplatedControl TemplatedParent
|
|
{
|
|
get;
|
|
}
|
|
|
|
public abstract IEnumerable<IVisual> VisualChildren
|
|
{
|
|
get;
|
|
}
|
|
|
|
public IObservable<T> GetObservable<T>(PerspexProperty<T> property)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IDisposable Bind(PerspexProperty property, IObservable<object> source, BindingPriority priority = BindingPriority.LocalValue)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
|