mirror of
https://github.com/wagesj45/butterflow-ui.git
synced 2025-09-09 03:00:39 -05:00
Incremental checkin.
Nothing functional still.
This commit is contained in:
parent
89b138e37b
commit
6f99539ba7
6 changed files with 226 additions and 22 deletions
|
|
@ -21,6 +21,28 @@ namespace butterflow_ui
|
|||
/// </summary>
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
#region Properties
|
||||
|
||||
public string PlaybackRate
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)GetValue(PlaybackRateProperty);
|
||||
}
|
||||
set
|
||||
{
|
||||
SetValue(PlaybackRateProperty, value);
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Dependency Properties
|
||||
|
||||
public static DependencyProperty PlaybackRateProperty = DependencyProperty.Register("PlaybackRateProperty", typeof(string), typeof(MainWindow));
|
||||
|
||||
#endregion
|
||||
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue