using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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 MaintainModule.Controls; /// /// Interaction logic for MontionButton.xaml /// public partial class MontionButton : UserControl { public MontionButton() { InitializeComponent(); } public ImageSource Image { get { return (ImageSource)GetValue(ImageProperty); } set { SetValue(ImageProperty, value); } } // Using a DependencyProperty as the backing store for Image. This enables animation, styling, binding, etc... public static readonly DependencyProperty ImageProperty = DependencyProperty.Register(nameof(Image), typeof(ImageSource), typeof(MontionButton), new PropertyMetadata(default)); public string Title { get { return (string)GetValue(TitleProperty); } set { SetValue(TitleProperty, value); } } // Using a DependencyProperty as the backing store for Title. This enables animation, styling, binding, etc... public static readonly DependencyProperty TitleProperty = DependencyProperty.Register(nameof(Title), typeof(string), typeof(MontionButton), new PropertyMetadata(default)); public ICommand OpenCommand { get { return (ICommand)GetValue(OpenCommandProperty); } set { SetValue(OpenCommandProperty, value); } } // Using a DependencyProperty as the backing store for OpenCommand. This enables animation, styling, binding, etc... public static readonly DependencyProperty OpenCommandProperty = DependencyProperty.Register(nameof(OpenCommand), typeof(ICommand), typeof(MontionButton), new PropertyMetadata(default)); public object OpenParameter { get { return (object)GetValue(OpenParameterProperty); } set { SetValue(OpenParameterProperty, value); } } // Using a DependencyProperty as the backing store for OpenParameter. This enables animation, styling, binding, etc... public static readonly DependencyProperty OpenParameterProperty = DependencyProperty.Register(nameof(OpenParameter), typeof(object), typeof(MontionButton), new PropertyMetadata(default)); }