mirror of https://github.com/icsharpcode/ILSpy.git
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.
16 lines
432 B
16 lines
432 B
namespace ILSpy.BamlDecompiler.Tests.Cases |
|
{ |
|
using System.Windows; |
|
using System.Windows.Controls; |
|
|
|
public partial class Issue2116 : UserControl |
|
{ |
|
public static ComponentResourceKey StyleKey1 => new ComponentResourceKey(typeof(Issue2116), "TestStyle1"); |
|
public static ComponentResourceKey StyleKey2 => new ComponentResourceKey(typeof(Issue2116), "TestStyle2"); |
|
|
|
public Issue2116() |
|
{ |
|
InitializeComponent(); |
|
} |
|
} |
|
}
|
|
|