1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PictureSettingsViewModel.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The Picture Settings View Model
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels
{
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Drawing;
using Caliburn.Micro;
using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Parsing;
using HandBrake.ApplicationServices.Services.Interfaces;
using HandBrake.Interop.Model.Encoding;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// The Picture Settings View Model
/// </summary>
[Export(typeof(IPictureSettingsViewModel))]
public class PictureSettingsViewModel : ViewModelBase, IPictureSettingsViewModel
{
/*
* TODO:
* Handle Presets when a new title is set
* Handle changes in cropping affecting the resolution calcuation.
*
*/
#region Constants and Fields
/// <summary>
/// The display size.
/// </summary>
private string displaySize;
/// <summary>
/// Backing field for for height control enabled
/// </summary>
private bool heightControlEnabled = true;
/// <summary>
/// Backing field for show custom anamorphic controls
/// </summary>
private bool showCustomAnamorphicControls;
/// <summary>
/// The source aspect ratio.
/// </summary>
private double sourceAspectRatio;
/// <summary>
/// The source info.
/// </summary>
private string sourceInfo;
/// <summary>
/// Source Par Values
/// </summary>
private Size sourceParValues;
/// <summary>
/// Source Resolution
/// </summary>
private Size sourceResolution;
/// <summary>
/// Backing field for width control enabled.
/// </summary>
private bool widthControlEnabled = true;
#endregion
#region Constructors and Destructors
/// <summary>
/// Initializes a new instance of the <see cref="HandBrakeWPF.ViewModels.PictureSettingsViewModel"/> class.
/// </summary>
/// <param name="windowManager">
/// The window manager.
/// </param>
/// <param name="userSettingService">
/// The user Setting Service.
/// </param>
public PictureSettingsViewModel(IWindowManager windowManager, IUserSettingService userSettingService)
{
this.Task = new EncodeTask();
this.SelectedModulus = 16;
this.MaintainAspectRatio = true;
}
#endregion
#region Properties
/// <summary>
/// Gets AnamorphicModes.
/// </summary>
public IEnumerable<Anamorphic> AnamorphicModes
{
get
{
return new List<Anamorphic> { Anamorphic.None, Anamorphic.Strict, Anamorphic.Loose, Anamorphic.Custom };
}
}
/// <summary>
/// Gets or sets CropBottom.
/// </summary>
public int CropBottom
{
get
{
return this.Task.Cropping.Bottom;
}
set
{
this.Task.Cropping.Bottom = this.CorrectForModulus(this.Task.Cropping.Bottom, value);
this.NotifyOfPropertyChange(() => this.CropBottom);
}
}
/// <summary>
/// Gets or sets CropLeft.
/// </summary>
public int CropLeft
{
get
{
return this.Task.Cropping.Left;
}
set
{
this.Task.Cropping.Left = this.CorrectForModulus(this.Task.Cropping.Left, value);
this.NotifyOfPropertyChange(() => this.CropLeft);
}
}
/// <summary>
/// Gets or sets CropRight.
/// </summary>
public int CropRight
{
get
{
return this.Task.Cropping.Right;
}
set
{
this.Task.Cropping.Right = this.CorrectForModulus(this.Task.Cropping.Right, value);
this.NotifyOfPropertyChange(() => this.CropRight);
}
}
/// <summary>
/// Gets or sets CropTop.
/// </summary>
public int CropTop
{
get
{
return this.Task.Cropping.Top;
}
set
{
this.Task.Cropping.Top = this.CorrectForModulus(this.Task.Cropping.Top, value);
this.NotifyOfPropertyChange(() => this.CropTop);
}
}
/// <summary>
/// Gets or sets DisplaySize.
/// </summary>
public string DisplaySize
{
get
{
return this.displaySize;
}
set
{
this.displaySize = value;
this.NotifyOfPropertyChange(() => this.DisplaySize);
}
}
/// <summary>
/// Gets or sets DisplayWidth.
/// </summary>
public int DisplayWidth
{
get
{
return this.Task.DisplayWidth.HasValue
? int.Parse(Math.Round(this.Task.DisplayWidth.Value, 0).ToString())
: 0;
}
set
{
this.Task.DisplayWidth = value;
this.CustomAnamorphicAdjust();
this.NotifyOfPropertyChange(() => this.DisplayWidth);
}
}
/// <summary>
/// Gets or sets Height.
/// </summary>
public int Height
{
get
{
return this.Task.Height.HasValue ? this.Task.Height.Value : 0;
}
set
{
this.Task.Height = value;
this.HeightAdjust();
this.NotifyOfPropertyChange(() => this.Height);
}
}
/// <summary>
/// Gets or sets a value indicating whether HeightControlEnabled.
/// </summary>
public bool HeightControlEnabled
{
get
{
return this.heightControlEnabled;
}
set
{
this.heightControlEnabled = value;
this.NotifyOfPropertyChange(() => this.HeightControlEnabled);
}
}
/// <summary>
/// Gets or sets a value indicating whether IsCustomCrop.
/// </summary>
public bool IsCustomCrop
{
get
{
return this.Task.HasCropping;
}
set
{
this.Task.HasCropping = value;
this.NotifyOfPropertyChange(() => this.IsCustomCrop);
}
}
/// <summary>
/// Gets or sets a value indicating whether MaintainAspectRatio.
/// </summary>
public bool MaintainAspectRatio
{
get
{
return this.Task.KeepDisplayAspect;
}
set
{
this.Task.KeepDisplayAspect = value;
this.WidthAdjust();
this.NotifyOfPropertyChange(() => this.MaintainAspectRatio);
}
}
/// <summary>
/// Gets ModulusValues.
/// </summary>
public IEnumerable<int> ModulusValues
{
get
{
return new List<int> { 16, 8, 4, 2 };
}
}
/// <summary>
/// Gets or sets ParHeight.
/// </summary>
public int ParHeight
{
get
{
return this.Task.PixelAspectY;
}
set
{
this.Task.PixelAspectY = value;
this.CustomAnamorphicAdjust();
this.NotifyOfPropertyChange(() => this.ParHeight);
}
}
/// <summary>
/// Gets or sets ParWidth.
/// </summary>
public int ParWidth
{
get
{
return this.Task.PixelAspectX;
}
set
{
this.Task.PixelAspectX = value;
this.CustomAnamorphicAdjust();
this.NotifyOfPropertyChange(() => this.ParWidth);
}
}
/// <summary>
/// Gets or sets SelectedAnamorphicMode.
/// </summary>
public Anamorphic SelectedAnamorphicMode
{
get
{
return this.Task.Anamorphic;
}
set
{
this.Task.Anamorphic = value;
this.AnamorphicAdjust();
this.NotifyOfPropertyChange(() => this.SelectedAnamorphicMode);
}
}
/// <summary>
/// Gets or sets SelectedModulus.
/// </summary>
public int? SelectedModulus
{
get
{
return this.Task.Modulus;
}
set
{
this.Task.Modulus = value;
this.ModulusAdjust();
this.NotifyOfPropertyChange(() => this.SelectedModulus);
}
}
/// <summary>
/// Gets or sets a value indicating whether ShowCustomAnamorphicControls.
/// </summary>
public bool ShowCustomAnamorphicControls
{
get
{
return this.showCustomAnamorphicControls;
}
set
{
this.showCustomAnamorphicControls = value;
this.NotifyOfPropertyChange(() => this.ShowCustomAnamorphicControls);
}
}
/// <summary>
/// Gets or sets SourceInfo.
/// </summary>
public string SourceInfo
{
get
{
return this.sourceInfo;
}
set
{
this.sourceInfo = value;
this.NotifyOfPropertyChange(() => this.SourceInfo);
}
}
/// <summary>
/// Gets or sets Task.
/// </summary>
public EncodeTask Task { get; set; }
/// <summary>
/// Gets or sets Width.
/// </summary>
public int Width
{
get
{
return this.Task.Width.HasValue ? this.Task.Width.Value : 0;
}
set
{
this.Task.Width = value;
this.WidthAdjust();
this.NotifyOfPropertyChange(() => this.Width);
}
}
/// <summary>
/// Gets or sets a value indicating whether WidthControlEnabled.
/// </summary>
public bool WidthControlEnabled
{
get
{
return this.widthControlEnabled;
}
set
{
this.widthControlEnabled = value;
this.NotifyOfPropertyChange(() => this.WidthControlEnabled);
}
}
/// <summary>
/// Gets SourceAspect.
/// </summary>
private Size SourceAspect
{
get
{
// display aspect = (width * par_width) / (height * par_height)
return new Size(
(this.sourceParValues.Width * this.sourceResolution.Width),
(this.sourceParValues.Height * this.sourceResolution.Height));
}
}
#endregion
#region Implemented Interfaces
#region ITabInterface
/// <summary>
/// Setup this tab for the specified preset.
/// </summary>
/// <param name="preset">
/// The preset.
/// </param>
/// <param name="task">
/// The task.
/// </param>
public void SetPreset(Preset preset, EncodeTask task)
{
this.Task = task;
// TODO: These all need to be handled correctly.
if (preset.PictureSettingsMode == PresetPictureSettingsMode.SourceMaximum)
{
this.Task.MaxWidth = preset.Task.MaxWidth;
this.Task.MaxHeight = preset.Task.MaxHeight;
this.Task.Width = preset.Task.MaxWidth ?? 0;
this.Task.Height = preset.Task.MaxHeight ?? 0;
}
else
{
this.Task.Width = preset.Task.Width ?? 0;
this.Task.Height = preset.Task.Height ?? 0;
}
if (this.Task.Anamorphic == Anamorphic.Custom)
{
this.Task.DisplayWidth = preset.Task.DisplayWidth ?? 0;
this.Task.PixelAspectX = preset.Task.PixelAspectX;
this.Task.PixelAspectY = preset.Task.PixelAspectY;
}
this.Task.KeepDisplayAspect = preset.Task.KeepDisplayAspect;
if (this.Task.Modulus.HasValue)
{
this.Task.Modulus = preset.Task.Modulus;
}
if (preset.Task.HasCropping)
{
this.Task.Cropping = preset.Task.Cropping;
}
}
/// <summary>
/// Setup this window for a new source
/// </summary>
/// <param name="title">
/// The title.
/// </param>
/// <param name="preset">
/// The preset.
/// </param>
/// <param name="task">
/// The task.
/// </param>
public void SetSource(Title title, Preset preset, EncodeTask task)
{
this.Task = task;
if (title != null)
{
// Set cached info
this.sourceAspectRatio = title.AspectRatio;
this.sourceParValues = title.ParVal;
this.sourceResolution = title.Resolution;
// Set Screen Controls
this.SourceInfo = string.Format(
"{0}x{1}, Aspect Ratio: {2:0.00}",
title.Resolution.Width,
title.Resolution.Height,
title.AspectRatio);
this.CropTop = title.AutoCropDimensions.Top;
this.CropBottom = title.AutoCropDimensions.Bottom;
this.CropLeft = title.AutoCropDimensions.Left;
this.CropRight = title.AutoCropDimensions.Right;
// TODO handle preset max width / height
this.Width = title.Resolution.Width;
this.Height = title.Resolution.Height;
this.MaintainAspectRatio = true;
}
}
#endregion
#endregion
#region Methods
/// <summary>
/// Adjust other values after the user has altered the anamorphic.
/// </summary>
private void AnamorphicAdjust()
{
this.DisplaySize = this.sourceResolution.IsEmpty
? "No Title Selected"
: string.Format(
"{0}x{1}",
this.CalculateAnamorphicSizes().Width,
this.CalculateAnamorphicSizes().Height);
switch (this.SelectedAnamorphicMode)
{
case Anamorphic.None:
this.WidthControlEnabled = true;
this.HeightControlEnabled = true;
this.ShowCustomAnamorphicControls = false;
this.Width = this.sourceResolution.Width;
this.SetDisplaySize();
break;
case Anamorphic.Strict:
this.WidthControlEnabled = false;
this.HeightControlEnabled = false;
this.ShowCustomAnamorphicControls = false;
this.Width = 0;
this.Height = 0;
this.NotifyOfPropertyChange(() => this.Width);
this.NotifyOfPropertyChange(() => this.Height);
this.SetDisplaySize();
break;
case Anamorphic.Loose:
this.WidthControlEnabled = true;
this.HeightControlEnabled = false;
this.ShowCustomAnamorphicControls = false;
this.Width = this.sourceResolution.Width;
this.Height = 0;
this.NotifyOfPropertyChange(() => this.Width);
this.NotifyOfPropertyChange(() => this.Height);
this.SetDisplaySize();
break;
case Anamorphic.Custom:
this.WidthControlEnabled = true;
this.HeightControlEnabled = true;
this.ShowCustomAnamorphicControls = true;
this.Width = this.sourceResolution.Width;
this.Height = 0;
this.NotifyOfPropertyChange(() => this.Width);
this.NotifyOfPropertyChange(() => this.Height);
this.DisplayWidth = this.CalculateAnamorphicSizes().Width;
this.ParWidth = this.sourceParValues.Width;
this.ParHeight = this.sourceParValues.Height;
this.NotifyOfPropertyChange(() => this.ParHeight);
this.NotifyOfPropertyChange(() => this.ParWidth);
this.NotifyOfPropertyChange(() => this.DisplayWidth);
this.SetDisplaySize();
break;
}
}
/// <summary>
/// Calculate the Anamorphic Resolution for the selected title.
/// </summary>
/// <returns>
/// A Size With Width/Height for this title.
/// </returns>
private Size CalculateAnamorphicSizes()
{
if (this.sourceResolution.IsEmpty)
{
return new Size(0, 0);
}
/* Set up some variables to make the math easier to follow. */
int croppedWidth = this.sourceResolution.Width - this.CropLeft - this.CropRight;
int croppedHeight = this.sourceResolution.Height - this.CropTop - this.CropBottom;
double storageAspect = (double)croppedWidth / croppedHeight;
/* Figure out what width the source would display at. */
double sourceDisplayWidth = (double)croppedWidth * this.sourceParValues.Width / this.sourceParValues.Height;
/*
3 different ways of deciding output dimensions:
- 1: Strict anamorphic, preserve source dimensions
- 2: Loose anamorphic, round to mod16 and preserve storage aspect ratio
- 3: Power user anamorphic, specify everything
*/
double calcWidth, calcHeight;
switch (this.SelectedAnamorphicMode)
{
default:
case Anamorphic.Strict:
/* Strict anamorphic */
double dispWidth = ((double)croppedWidth * this.sourceParValues.Width / this.sourceParValues.Height);
dispWidth = Math.Round(dispWidth, 0);
Size output = new Size((int)dispWidth, croppedHeight);
return output;
case Anamorphic.Loose:
/* "Loose" anamorphic.
- Uses mod16-compliant dimensions,
- Allows users to set the width
*/
calcWidth = this.GetModulusValue(this.Width); /* Time to get picture width that divide cleanly.*/
calcHeight = (calcWidth / storageAspect) + 0.5;
calcHeight = this.GetModulusValue(calcHeight); /* Time to get picture height that divide cleanly.*/
/* The film AR is the source's display width / cropped source height.
The output display width is the output height * film AR.
The output PAR is the output display width / output storage width. */
double pixelAspectWidth = calcHeight * sourceDisplayWidth / croppedHeight;
double pixelAspectHeight = calcWidth;
double disWidthLoose = (calcWidth * pixelAspectWidth / pixelAspectHeight);
if (double.IsNaN(disWidthLoose))
{
disWidthLoose = 0;
}
return new Size((int)disWidthLoose, (int)calcHeight);
case Anamorphic.Custom:
// Get the User Interface Values
double UIdisplayWidth;
double.TryParse(this.DisplayWidth.ToString(), out UIdisplayWidth);
/* Anamorphic 3: Power User Jamboree - Set everything based on specified values */
calcHeight = this.GetModulusValue(this.Height);
if (this.MaintainAspectRatio)
{
return new Size((int)Math.Truncate(UIdisplayWidth), (int)calcHeight);
}
return new Size((int)Math.Truncate(UIdisplayWidth), (int)calcHeight);
}
}
/// <summary>
/// Correct the new value so that the result of the modulus of that value is 0
/// </summary>
/// <param name="oldValue">
/// The old value.
/// </param>
/// <param name="newValue">
/// The new value.
/// </param>
/// <returns>
/// The Value corrected so that for a given modulus the result is 0
/// </returns>
private int CorrectForModulus(int oldValue, int newValue)
{
int remainder = newValue % 2;
if (remainder == 0)
{
return newValue;
}
return newValue > oldValue ? newValue + remainder : newValue - remainder;
}
/// <summary>
/// Adjust other values after the user has altered one of the custom anamorphic settings
/// </summary>
private void CustomAnamorphicAdjust()
{
this.SetDisplaySize();
}
/// <summary>
/// For a given value, correct so that it matches the users currently selected modulus value
/// </summary>
/// <param name="value">
/// The value.
/// </param>
/// <returns>
/// Value corrected so that value % selected modulus == 0
/// </returns>
private double GetModulusValue(double value)
{
if (this.SelectedModulus == null)
{
return 0;
}
double remainder = value % this.SelectedModulus.Value;
if (remainder == 0)
{
return value;
}
return remainder >= ((double)this.SelectedModulus.Value / 2)
? value + (this.SelectedModulus.Value - remainder)
: value - remainder;
}
/// <summary>
/// Adjust other values after the user has altered the height
/// </summary>
private void HeightAdjust()
{
if (this.Height > this.sourceResolution.Height)
{
this.Task.Height = this.sourceResolution.Height;
this.NotifyOfPropertyChange(() => this.Task.Height);
}
switch (this.SelectedAnamorphicMode)
{
case Anamorphic.None:
if (this.MaintainAspectRatio)
{
double crop_width = this.sourceResolution.Width - this.CropLeft - this.CropRight;
double crop_height = this.sourceResolution.Height - this.CropTop - this.CropBottom;
double new_width = ((double)this.Height * this.sourceResolution.Height * this.SourceAspect.Width *
crop_width) /
(this.sourceResolution.Width * this.SourceAspect.Height * crop_height);
this.Task.Width = (int)Math.Round(this.GetModulusValue(new_width), 0);
this.NotifyOfPropertyChange(() => this.Task.Width);
}
break;
case Anamorphic.Custom:
this.SetDisplaySize();
break;
}
}
/// <summary>
/// Adjust other values after the user has altered the modulus
/// </summary>
private void ModulusAdjust()
{
this.WidthAdjust();
}
/// <summary>
/// Set the display size text
/// </summary>
private void SetDisplaySize()
{
this.DisplaySize = this.sourceResolution.IsEmpty
? "No Title Selected"
: string.Format(
"{0}x{1}",
this.CalculateAnamorphicSizes().Width,
this.CalculateAnamorphicSizes().Height);
}
/// <summary>
/// Adjust other values after the user has altered the width
/// </summary>
private void WidthAdjust()
{
if (this.Width > this.sourceResolution.Width)
{
this.Task.Width = this.sourceResolution.Width;
this.NotifyOfPropertyChange(() => this.Task.Width);
}
switch (this.SelectedAnamorphicMode)
{
case Anamorphic.None:
if (this.MaintainAspectRatio)
{
double crop_width = this.sourceResolution.Width - this.CropLeft - this.CropRight;
double crop_height = this.sourceResolution.Height - this.CropTop - this.CropBottom;
if (this.SourceAspect.Width == 0 && this.SourceAspect.Height == 0)
{
break;
}
double newHeight = ((double)this.Width * this.sourceResolution.Width * this.SourceAspect.Height *
crop_height) /
(this.sourceResolution.Height * this.SourceAspect.Width * crop_width);
this.Task.Height = (int)Math.Round(this.GetModulusValue(newHeight), 0);
this.NotifyOfPropertyChange("Height");
}
break;
case Anamorphic.Strict:
this.Task.Width = 0;
this.Task.Height = 0;
this.NotifyOfPropertyChange(() => this.Task.Width);
this.NotifyOfPropertyChange(() => this.Task.Height);
this.SetDisplaySize();
break;
case Anamorphic.Loose:
this.Task.Height = 0;
this.NotifyOfPropertyChange(() => this.Task.Width);
this.NotifyOfPropertyChange(() => this.Task.Height);
this.SetDisplaySize();
break;
case Anamorphic.Custom:
this.SetDisplaySize();
break;
}
}
#endregion
}
}
|