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.
47 lines
1.3 KiB
47 lines
1.3 KiB
// Copyright (c) The Perspex Project. All rights reserved.
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
using System;
|
|
using Perspex.Styling;
|
|
|
|
namespace Perspex.Controls
|
|
{
|
|
public class UserControl : ContentControl, IStyleable, INameScope
|
|
{
|
|
private readonly NameScope _nameScope = new NameScope();
|
|
|
|
/// <inheritdoc/>
|
|
event EventHandler<NameScopeEventArgs> INameScope.Registered
|
|
{
|
|
add { _nameScope.Registered += value; }
|
|
remove { _nameScope.Registered -= value; }
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
event EventHandler<NameScopeEventArgs> INameScope.Unregistered
|
|
{
|
|
add { _nameScope.Unregistered += value; }
|
|
remove { _nameScope.Unregistered -= value; }
|
|
}
|
|
|
|
Type IStyleable.StyleKey => typeof(ContentControl);
|
|
|
|
/// <inheritdoc/>
|
|
void INameScope.Register(string name, object element)
|
|
{
|
|
_nameScope.Register(name, element);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
object INameScope.Find(string name)
|
|
{
|
|
return _nameScope.Find(name);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
void INameScope.Unregister(string name)
|
|
{
|
|
_nameScope.Unregister(name);
|
|
}
|
|
}
|
|
}
|
|
|