4 changed files with 2 additions and 51 deletions
@ -1,25 +0,0 @@ |
|||
// Copyright (c) The Avalonia Project. All rights reserved.
|
|||
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|||
|
|||
using System; |
|||
|
|||
namespace Avalonia.Markup.Xaml.MarkupExtensions |
|||
{ |
|||
public class StaticExtension : Portable.Xaml.Markup.StaticExtension |
|||
{ |
|||
public StaticExtension() |
|||
{ |
|||
} |
|||
|
|||
public StaticExtension(string member) |
|||
: base(member) |
|||
{ |
|||
} |
|||
|
|||
public override object ProvideValue(IServiceProvider serviceProvider) |
|||
{ |
|||
return base.ProvideValue(serviceProvider); |
|||
} |
|||
} |
|||
|
|||
} |
|||
@ -1,23 +0,0 @@ |
|||
// Copyright (c) The Avalonia Project. All rights reserved.
|
|||
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|||
|
|||
using System; |
|||
|
|||
namespace Avalonia.Markup.Xaml.MarkupExtensions |
|||
{ |
|||
public class TypeExtension : Portable.Xaml.Markup.TypeExtension |
|||
{ |
|||
public TypeExtension() |
|||
{ |
|||
} |
|||
|
|||
public TypeExtension(string typeName) : base(typeName) |
|||
{ |
|||
} |
|||
|
|||
public override object ProvideValue(IServiceProvider serviceProvider) |
|||
{ |
|||
return base.ProvideValue(serviceProvider); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue