| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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.Transfer;
- /// <summary>
- /// Interaction logic for InitControl.xaml
- /// </summary>
- public partial class InitControl : UserControl
- {
- public InitControl()
- {
- InitializeComponent();
- }
- public bool IsManual
- {
- get { return (bool)GetValue(IsManualProperty); }
- set { SetValue(IsManualProperty, value); }
- }
- // Using a DependencyProperty as the backing store for IsManual. This enables animation, styling, binding, etc...
- public static readonly DependencyProperty IsManualProperty =
- DependencyProperty.Register(nameof(IsManual), typeof(bool), typeof(InitControl), 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(InitControl), new PropertyMetadata(default));
- }
|