1
0
Fork 0
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:
Jordan Wages 2018-06-24 03:29:34 -05:00
commit 7fde16539f
3 changed files with 50 additions and 18 deletions

View file

@ -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