mirror of https://github.com/icsharpcode/ILSpy.git
5 changed files with 40 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Text; |
||||||
|
using System.Threading.Tasks; |
||||||
|
using System.Windows.Controls; |
||||||
|
|
||||||
|
namespace ILSpy.BamlDecompiler.Tests.Cases |
||||||
|
{ |
||||||
|
public class CustomControl : Control |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:cc="clr-namespace:ILSpy.BamlDecompiler.Tests.Cases"> |
||||||
|
<Label> |
||||||
|
<Label.Style> |
||||||
|
<Style /> |
||||||
|
</Label.Style> |
||||||
|
</Label> |
||||||
|
<cc:CustomControl> |
||||||
|
<cc:CustomControl.Style> |
||||||
|
<Style /> |
||||||
|
</cc:CustomControl.Style> |
||||||
|
</cc:CustomControl> |
||||||
|
</Grid> |
Loading…
Reference in new issue