mirror of https://github.com/icsharpcode/ILSpy.git
5 changed files with 45 additions and 4 deletions
@ -0,0 +1,3 @@ |
|||||||
|
<UserControl x:Class="ILSpy.BamlDecompiler.Tests.Cases.Issue3318" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:cases="clr-namespace:ILSpy.BamlDecompiler.Tests.Cases;assembly=ILSpy.BamlDecompiler.Tests"> |
||||||
|
<Grid Name="Root" x:FieldModifier="public" /> |
||||||
|
</UserControl> |
||||||
@ -0,0 +1,26 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
using System.Windows; |
||||||
|
using System.Windows.Controls; |
||||||
|
using System.Windows.Data; |
||||||
|
using System.Windows.Documents; |
||||||
|
using System.Windows.Input; |
||||||
|
using System.Windows.Media; |
||||||
|
using System.Windows.Media.Imaging; |
||||||
|
using System.Windows.Navigation; |
||||||
|
using System.Windows.Shapes; |
||||||
|
|
||||||
|
namespace ILSpy.BamlDecompiler.Tests.Cases |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for Issue3318.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class Issue3318 : UserControl |
||||||
|
{ |
||||||
|
public Issue3318() |
||||||
|
{ |
||||||
|
InitializeComponent(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue