mirror of
https://github.com/wagesj45/butterflow-ui.git
synced 2025-09-09 03:00:39 -05:00
Fleshing out bindings and values
This commit is contained in:
parent
d5f58560fd
commit
7fde16539f
3 changed files with 50 additions and 18 deletions
|
|
@ -24,6 +24,7 @@ namespace butterflow_ui
|
|||
private bool keepAudio;
|
||||
private int width;
|
||||
private int height;
|
||||
private bool losslessQuality;
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
@ -91,6 +92,21 @@ namespace butterflow_ui
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary> Gets or sets a value indicating whether the result is rendered in lossless quality. </summary>
|
||||
/// <value> True if lossless quality is selected, false if not. </value>
|
||||
public bool LosslessQuality
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.losslessQuality;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.losslessQuality = value;
|
||||
OnPropertyChanged("LosslessQuality");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Methods
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue