| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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 SummaryModule.Controls.BaseMotion
- {
- /// <summary>
- /// Interaction logic for Fims.xaml
- /// </summary>
- public partial class Fims : UserControl
- {
- public Fims()
- {
- InitializeComponent();
- }
- public string Header
- {
- get { return (string)GetValue(HeaderProperty); }
- set { SetValue(HeaderProperty, value); }
- }
- // Using a DependencyProperty as the backing store for Header. This enables animation, styling, binding, etc...
- public static readonly DependencyProperty HeaderProperty =
- DependencyProperty.Register(nameof(Header), typeof(string), typeof(Fims), new PropertyMetadata(default));
- public ICommand Command
- {
- get { return (ICommand)GetValue(CommandProperty); }
- set { SetValue(CommandProperty, value); }
- }
- // Using a DependencyProperty as the backing store for Command. This enables animation, styling, binding, etc...
- public static readonly DependencyProperty CommandProperty =
- DependencyProperty.Register(nameof(Command), typeof(ICommand), typeof(Fims), new PropertyMetadata(default));
- public object CommandParameter
- {
- get { return (object)GetValue(CommandParameterProperty); }
- set { SetValue(CommandParameterProperty, value); }
- }
- // Using a DependencyProperty as the backing store for CommandParameter. This enables animation, styling, binding, etc...
- public static readonly DependencyProperty CommandParameterProperty =
- DependencyProperty.Register(nameof(CommandParameter), typeof(object), typeof(Fims), new PropertyMetadata(default));
- public bool FoupLoaded
- {
- get { return (bool)GetValue(FoupLoadedProperty); }
- set { SetValue(FoupLoadedProperty, value); }
- }
- // Using a DependencyProperty as the backing store for FoupLoaded. This enables animation, styling, binding, etc...
- public static readonly DependencyProperty FoupLoadedProperty =
- DependencyProperty.Register(nameof(FoupLoaded), typeof(bool), typeof(Fims), new PropertyMetadata(false));
- }
- }
|