mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
1. Add XAML namespaces https://spacestation14.io with Avalonia hacks. 2. Make markup extensions work with Avalonia hacks. 3. Add LocExtension for localized strings. 4. Add Vector2 parsing type converter to XAML compilation. 5. Make SS14Window better thanks to these improvements.
36 lines
663 B
C#
36 lines
663 B
C#
using System;
|
|
|
|
namespace Robust.Client.UserInterface.XAML
|
|
{
|
|
public class ContentAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
public class UsableDuringInitializationAttribute : Attribute
|
|
{
|
|
public UsableDuringInitializationAttribute(bool usable)
|
|
{
|
|
}
|
|
}
|
|
|
|
public class DeferredContentAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
public interface ITestRootObjectProvider
|
|
{
|
|
object RootObject { get; }
|
|
}
|
|
|
|
public interface ITestProvideValueTarget
|
|
{
|
|
object TargetObject { get; }
|
|
object TargetProperty { get; }
|
|
}
|
|
|
|
public interface ITestUriContext
|
|
{
|
|
Uri BaseUri { get; set; }
|
|
}
|
|
}
|