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.
25 lines
589 B
25 lines
589 B
using System;
|
|
using System.Windows;
|
|
|
|
namespace Microsoft.Windows.Controls.Themes
|
|
{
|
|
public sealed class StaticResourceKey : ResourceKey
|
|
{
|
|
private string _key;
|
|
public string Key { get { return _key; } }
|
|
|
|
private Type _type;
|
|
public Type Type { get { return _type; } }
|
|
|
|
public StaticResourceKey(Type type, string key)
|
|
{
|
|
_type = type;
|
|
_key = key;
|
|
}
|
|
|
|
public override System.Reflection.Assembly Assembly
|
|
{
|
|
get { return _type.Assembly; }
|
|
}
|
|
}
|
|
}
|
|
|