Files
WpfExtended/WpfExtended.Test/MainWindow.xaml.cs
T
Alexandru Macocian 166f9b499e Reorganized structure.
Created test project.
2021-04-01 12:51:08 +02:00

19 lines
474 B
C#

using System.Windows;
using System.Windows.Media;
namespace WpfExtended.Test
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public static DependencyProperty ImageSourceProperty =
DependencyProperty.Register(nameof(ImageSource), typeof(ImageSource), typeof(MainWindow));
public MainWindow()
{
InitializeComponent();
}
}
}