| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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;
- /// <summary>
- /// Interaction logic for MontionButton.xaml
- /// </summary>
- 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));
- }
|