mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-15 14:59:30 +00:00
166f9b499e
Created test project.
19 lines
474 B
C#
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();
|
|
}
|
|
}
|
|
}
|