@@ -18,7 +18,7 @@ public void Move_Is_Constrained_To_Viewport ()
18
18
Y = 1 ,
19
19
Width = 3 , Height = 3
20
20
} ;
21
- view . Margin . Thickness = new ( 1 ) ;
21
+ view . Margin ! . Thickness = new ( 1 ) ;
22
22
23
23
// Only valid location w/in Viewport is 0, 0 (view) - 2, 2 (screen)
24
24
@@ -42,7 +42,7 @@ public void AddRune_Is_Constrained_To_Viewport ()
42
42
Y = 1 ,
43
43
Width = 3 , Height = 3
44
44
} ;
45
- view . Padding . Thickness = new ( 1 ) ;
45
+ view . Padding ! . Thickness = new ( 1 ) ;
46
46
view . Padding . Diagnostics = ViewDiagnosticFlags . Thickness ;
47
47
view . BeginInit ( ) ;
48
48
view . EndInit ( ) ;
@@ -315,7 +315,7 @@ public void Clipping_Wide_Runes ()
315
315
これは広いルーンラインです。
316
316
""" ,
317
317
} ;
318
- frameView . Border . LineStyle = LineStyle . Single ;
318
+ frameView . Border ! . LineStyle = LineStyle . Single ;
319
319
frameView . Border . Thickness = new ( 1 , 0 , 0 , 0 ) ;
320
320
321
321
top . Add ( frameView ) ;
@@ -338,7 +338,7 @@ public void Clipping_Wide_Runes ()
338
338
Width = Dim . Auto ( ) ,
339
339
BorderStyle = LineStyle . Single
340
340
} ;
341
- view . Border . Thickness = new ( 1 , 0 , 1 , 0 ) ;
341
+ view . Border ! . Thickness = new ( 1 , 0 , 1 , 0 ) ;
342
342
343
343
top . Add ( view ) ;
344
344
top . Layout ( ) ;
@@ -451,7 +451,7 @@ public void Draw_Minimum_Full_Border_With_Empty_Viewport ()
451
451
public void Draw_Minimum_Full_Border_With_Empty_Viewport_Without_Bottom ( )
452
452
{
453
453
var view = new View { Width = 2 , Height = 1 , BorderStyle = LineStyle . Single } ;
454
- view . Border . Thickness = new ( 1 , 1 , 1 , 0 ) ;
454
+ view . Border ! . Thickness = new ( 1 , 1 , 1 , 0 ) ;
455
455
view . BeginInit ( ) ;
456
456
view . EndInit ( ) ;
457
457
view . SetRelativeLayout ( Application . Screen . Size ) ;
@@ -469,7 +469,7 @@ public void Draw_Minimum_Full_Border_With_Empty_Viewport_Without_Bottom ()
469
469
public void Draw_Minimum_Full_Border_With_Empty_Viewport_Without_Left ( )
470
470
{
471
471
var view = new View { Width = 1 , Height = 2 , BorderStyle = LineStyle . Single } ;
472
- view . Border . Thickness = new ( 0 , 1 , 1 , 1 ) ;
472
+ view . Border ! . Thickness = new ( 0 , 1 , 1 , 1 ) ;
473
473
view . BeginInit ( ) ;
474
474
view . EndInit ( ) ;
475
475
view . SetRelativeLayout ( Application . Screen . Size ) ;
@@ -494,7 +494,7 @@ public void Draw_Minimum_Full_Border_With_Empty_Viewport_Without_Left ()
494
494
public void Draw_Minimum_Full_Border_With_Empty_Viewport_Without_Right ( )
495
495
{
496
496
var view = new View { Width = 1 , Height = 2 , BorderStyle = LineStyle . Single } ;
497
- view . Border . Thickness = new ( 1 , 1 , 0 , 1 ) ;
497
+ view . Border ! . Thickness = new ( 1 , 1 , 0 , 1 ) ;
498
498
view . BeginInit ( ) ;
499
499
view . EndInit ( ) ;
500
500
view . SetRelativeLayout ( Application . Screen . Size ) ;
@@ -519,7 +519,7 @@ public void Draw_Minimum_Full_Border_With_Empty_Viewport_Without_Right ()
519
519
public void Draw_Minimum_Full_Border_With_Empty_Viewport_Without_Top ( )
520
520
{
521
521
var view = new View { Width = 2 , Height = 1 , BorderStyle = LineStyle . Single } ;
522
- view . Border . Thickness = new ( 1 , 0 , 1 , 1 ) ;
522
+ view . Border ! . Thickness = new ( 1 , 0 , 1 , 1 ) ;
523
523
524
524
view . BeginInit ( ) ;
525
525
view . EndInit ( ) ;
@@ -964,7 +964,7 @@ public void SetClip_ClipVisibleContentOnly_VisibleContentIsClipped ()
964
964
ViewportSettings = ViewportSettings . ClipContentOnly
965
965
} ;
966
966
view . SetContentSize ( new Size ( 10 , 10 ) ) ;
967
- view . Border . Thickness = new ( 1 ) ;
967
+ view . Border ! . Thickness = new ( 1 ) ;
968
968
view . BeginInit ( ) ;
969
969
view . EndInit ( ) ;
970
970
Assert . Equal ( view . Frame , View . GetClip ( ) ! . GetBounds ( ) ) ;
@@ -997,7 +997,7 @@ public void SetClip_Default_ClipsToViewport ()
997
997
Height = Dim . Fill ( )
998
998
} ;
999
999
view . SetContentSize ( new Size ( 10 , 10 ) ) ;
1000
- view . Border . Thickness = new ( 1 ) ;
1000
+ view . Border ! . Thickness = new ( 1 ) ;
1001
1001
view . BeginInit ( ) ;
1002
1002
view . EndInit ( ) ;
1003
1003
Assert . Equal ( view . Frame , View . GetClip ( ) ! . GetBounds ( ) ) ;
0 commit comments