mirror of https://github.com/icsharpcode/ILSpy.git
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(); |
|
} |
|
} |
|
}
|
|
|