Skip to content

Commit f91049a

Browse files
committed
[Update] Resize Window
-New resolution: 1100 x 500 -New BUG found (didn't fixed) : some enemy soldier will be very small
1 parent 2cf1b05 commit f91049a

29 files changed

+79
-57
lines changed
3 KB
Binary file not shown.

Side-scrolling Tower Defense/AI.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,23 @@ public AI( Grid _grid, Grid _gridTopBar, Player _player, int difficulty)
3232
{
3333
case 1:
3434
_op = 0.6;
35-
_chanceToGenSoldier = 100000;
35+
_chanceToGenSoldier = 120000;
3636
_chanceToUpgradeTower = 100000;
3737
_towerLVlimit = 1;
3838
_soldierLimit = 10;
3939
_canCounterAttack = false;
4040
break;
4141
case 2:
4242
_op = 1;
43-
_chanceToGenSoldier = 70000;
43+
_chanceToGenSoldier = 85000;
4444
_chanceToUpgradeTower = 50000;
4545
_towerLVlimit = 3;
4646
_soldierLimit = 15;
4747
_canCounterAttack = true;
4848
break;
4949
case 3:
5050
_op = 1.5;
51-
_chanceToGenSoldier = 50000;
51+
_chanceToGenSoldier = 60000;
5252
_chanceToUpgradeTower = 10000;
5353
_towerLVlimit = 5;
5454
_soldierLimit = 15;

Side-scrolling Tower Defense/Basic Soldier.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,17 +109,17 @@ public Soldier(int hp, int atk, int range, double speed, bool enemy, int price)
109109
spImg = new StackPanel();
110110

111111
if (isEnemy)
112-
POSITION = 1000;
112+
POSITION = 1100;
113113
else
114114
POSITION = 0;
115115
}
116116
public StackPanel Show(int height, int width, string imageSource)
117117
{
118118
if(isEnemy)
119-
spImg.Margin = new System.Windows.Thickness(0,0,958-width,20); //AI士兵出生位置
119+
spImg.Margin = new System.Windows.Thickness(0,0,1058-width,20); //AI士兵出生位置
120120
else
121121
spImg.Margin = new System.Windows.Thickness(0,0,36,20); //Player士兵出生位置
122-
spImg.Width = width;
122+
spImg.Width = width*1.1;
123123
spImg.VerticalAlignment = VerticalAlignment.Bottom;
124124
spImg.HorizontalAlignment = HorizontalAlignment.Right;
125125
// spImg.Background = System.Windows.Media.Brushes.Black;

Side-scrolling Tower Defense/Dervied Solider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Archer : Soldier
3737
private Label bullet;
3838
private Grid grid;
3939
public Archer(bool isEnemy, double overPower, Grid _grid)
40-
: base((int)(250 * overPower), (int)(30 * overPower), 150, (0.3 * overPower), isEnemy, 150)
40+
: base((int)(250 * overPower), (int)(30 * overPower), 150, (0.35 * overPower), isEnemy, 150)
4141
{
4242
grid = _grid;
4343
if (isEnemy)
@@ -300,7 +300,7 @@ class Berserker : Soldier
300300
{
301301
//hp=? , atk=? , range = ? , speed =?
302302
public Berserker(bool isEnemy, double overPower)
303-
: base((int)(1500 * overPower), (int)(10 * overPower), 10, (0.1 * overPower), isEnemy, 600){}
303+
: base((int)(1500 * overPower), (int)(10 * overPower), 10, (0.2 * overPower), isEnemy, 600){}
304304

305305
public new void Skill()
306306
{

Side-scrolling Tower Defense/MainWindow.xaml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:gif="http://wpfanimatedgif.codeplex.com"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:Side_scrolling_Tower_Defense" mc:Ignorable="d" x:Class="Side_scrolling_Tower_Defense.MainWindow"
6-
Title="橫向超經典守塔防禦遊戲" Height="452.799" Width="1000" ResizeMode="CanMinimize" Closing="Window_Closing" KeyDown="Window_KeyDown">
6+
Title="橫向超經典守塔防禦遊戲" Height="500" Width="1100" ResizeMode="CanMinimize" Closing="Window_Closing" KeyDown="Window_KeyDown">
77
<Grid>
88
<Grid.Background>
99
<ImageBrush/>
@@ -13,7 +13,7 @@
1313
<RowDefinition/>
1414
<RowDefinition Height="108"/>
1515
</Grid.RowDefinitions>
16-
<Grid x:Name="grid1" AllowDrop="True" VerticalAlignment="Bottom" Height="268" Grid.RowSpan="2" HorizontalAlignment="Left" Width="994" Margin="0,0,0,107" Grid.Row="1">
16+
<Grid x:Name="grid1" AllowDrop="True" VerticalAlignment="Bottom" Height="315" Grid.RowSpan="2" HorizontalAlignment="Left" Width="1094" Margin="0,0,0,107" Grid.Row="1">
1717
<Grid.Background>
1818
<ImageBrush ImageSource="pack://siteoforigin:,,,/Images/bg_inGame.jpg"/>
1919
</Grid.Background>
@@ -24,51 +24,51 @@
2424
<DockPanel Height="35" LastChildFill="False" Margin="717,10,0,0" Background="#FFE2DBDB" HorizontalAlignment="Left" VerticalAlignment="Top" Width="105"/>
2525

2626
</Grid>
27-
<Grid x:Name="gridControlBar" Background="#FF2C2206" Margin="0,1,0,0" Grid.Row="2" d:IsLocked="True">
28-
<Button x:Name="btnSpeedUp" Content="&gt;" HorizontalAlignment="Left" Margin="19,48,0,0" VerticalAlignment="Top" Width="38" FontWeight="Bold" FontSize="16" Click="btnSpeedUp_Click" Height="27" Focusable="False" ToolTip="調整遊戲進行速度" Background="#FFB09F9F"/>
29-
<Button x:Name="btnReturnToMenu" Content="Menu" HorizontalAlignment="Left" Margin="19,15,0,0" VerticalAlignment="Top" Width="38" Height="27" Click="btnReturnToMenu_Click" Focusable="False" ToolTip="回主選單" Foreground="Black" Background="#FFB09F9F"/>
30-
<Button x:Name="skill1" HorizontalAlignment="Left" Margin="93,8,0,0" VerticalAlignment="Top" Width="43" Height="39" Focusable="False" ToolTip="時間凍結&#xA;CD: 40s&#xA;停止敵方全體10秒" Click="skill1_Click" BorderThickness="1" Background="{x:Null}" BorderBrush="{x:Null}">
27+
<Grid x:Name="gridControlBar" Background="#FF2C2206" Margin="0,1,0,0" Grid.Row="2">
28+
<Button x:Name="btnSpeedUp" Content="&gt;" HorizontalAlignment="Left" Margin="24,58,0,0" VerticalAlignment="Top" Width="48" FontWeight="Bold" FontSize="16" Click="btnSpeedUp_Click" Height="35" Focusable="False" ToolTip="調整遊戲進行速度" Background="#FFB09F9F"/>
29+
<Button x:Name="btnReturnToMenu" Content="Menu" HorizontalAlignment="Left" Margin="24,10,0,0" VerticalAlignment="Top" Width="48" Height="35" Click="btnReturnToMenu_Click" Focusable="False" ToolTip="回主選單" Foreground="Black" Background="#FFB09F9F" FontWeight="Bold"/>
30+
<Button x:Name="skill1" HorizontalAlignment="Left" Margin="127,10,0,0" VerticalAlignment="Top" Width="43" Height="39" Focusable="False" ToolTip="時間凍結&#xA;CD: 40s&#xA;停止敵方全體10秒" Click="skill1_Click" BorderThickness="1" Background="{x:Null}" BorderBrush="{x:Null}">
3131
<Image Source="Images/skill1.PNG" Stretch="Fill"/>
3232
</Button>
33-
<Button x:Name="skill2" HorizontalAlignment="Left" Margin="142,8,0,0" VerticalAlignment="Top" Width="43" Height="39" Focusable="False" ToolTip="精準射擊&#xA;CD: 30s&#xA;我方塔10秒內距離無限" Click="skill2_Click" BorderThickness="1" Background="{x:Null}" BorderBrush="{x:Null}">
33+
<Button x:Name="skill2" HorizontalAlignment="Left" Margin="176,10,0,0" VerticalAlignment="Top" Width="43" Height="39" Focusable="False" ToolTip="精準射擊&#xA;CD: 30s&#xA;我方塔10秒內距離無限" Click="skill2_Click" BorderThickness="1" Background="{x:Null}" BorderBrush="{x:Null}">
3434
<Image Source="Images/skill2.PNG" Stretch="Fill"/>
3535
</Button>
36-
<Button x:Name="skill3" HorizontalAlignment="Left" Margin="93,52,0,0" VerticalAlignment="Top" Width="43" Height="39" Focusable="False" ToolTip="狂戰士&#xA;CD: 70s&#xA;我方士兵10秒內攻擊力、血量、速度提升兩倍" Click="skill3_Click" BorderThickness="1" Background="{x:Null}" BorderBrush="{x:Null}">
36+
<Button x:Name="skill3" HorizontalAlignment="Left" Margin="127,54,0,0" VerticalAlignment="Top" Width="43" Height="39" Focusable="False" ToolTip="狂戰士&#xA;CD: 70s&#xA;我方士兵10秒內攻擊力、血量、速度提升兩倍" Click="skill3_Click" BorderThickness="1" Background="{x:Null}" BorderBrush="{x:Null}">
3737
<Image Source="Images/skill3.PNG" Stretch="Fill"/>
3838
</Button>
39-
<Button x:Name="skill4" HorizontalAlignment="Left" Margin="142,52,0,0" VerticalAlignment="Top" Width="43" Height="39" Click="skill4_Click" Focusable="False" Background="{x:Null}" BorderBrush="{x:Null}" BorderThickness="1" ToolTip="雷射砲&#xA;CD: 60s&#xA;發射擁有極高攻擊力的雷射砲">
39+
<Button x:Name="skill4" HorizontalAlignment="Left" Margin="176,54,0,0" VerticalAlignment="Top" Width="43" Height="39" Click="skill4_Click" Focusable="False" Background="{x:Null}" BorderBrush="{x:Null}" BorderThickness="1" ToolTip="雷射砲&#xA;CD: 60s&#xA;發射擁有極高攻擊力的雷射砲">
4040
<Image Source="Images/skill4.PNG" Stretch="Fill"/>
4141
</Button>
42-
<Button x:Name="btnSoldier1" Height="70" Margin="237,10,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Width="81" Click="btnSoldier1_Click" Focusable="False" ToolTip="娜美 $ 100&#xA;血 量: 150&#xA;攻擊力: 25&#xA;速 度: 4" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
42+
<Button x:Name="btnSoldier1" Height="70" Margin="310,15,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Width="81" Click="btnSoldier1_Click" Focusable="False" ToolTip="娜美 $ 100&#xA;血 量: 150&#xA;攻擊力: 25&#xA;速 度: 4" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
4343
<Image Source="pack://siteoforigin:,,,/Images/s3.JPG" Stretch="Fill"/>
4444
</Button>
45-
<Button x:Name="btnSoldier2" Height="70" Margin="323,10,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier2_Click" Focusable="False" ToolTip="佛朗基 $ 150&#xA;血 量: 250&#xA;攻擊力: 30&#xA;速 度: 3" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
45+
<Button x:Name="btnSoldier2" Height="70" Margin="396,15,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier2_Click" Focusable="False" ToolTip="佛朗基 $ 150&#xA;血 量: 250&#xA;攻擊力: 30&#xA;速 度: 3" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
4646
<Image Source="pack://siteoforigin:,,,/Images/s6.JPG" Stretch="Fill"/>
4747
</Button>
48-
<Button x:Name="btnSoldier3" Height="70" Margin="407,10,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier3_Click" Focusable="False" ToolTip="索隆 $ 200&#xA;血 量: 300&#xA;攻擊力: 30&#xA;速 度: 5" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
48+
<Button x:Name="btnSoldier3" Height="70" Margin="480,15,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier3_Click" Focusable="False" ToolTip="索隆 $ 200&#xA;血 量: 300&#xA;攻擊力: 30&#xA;速 度: 5" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
4949
<Image Source="pack://siteoforigin:,,,/Images/s2.JPG" Stretch="Fill"/>
5050
</Button>
51-
<Button x:Name="btnSoldier4" Height="70" Margin="492,10,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="82" Click="btnSoldier4_Click" Focusable="False" ToolTip="魯夫 $ 300&#xA;血 量: 350&#xA;攻擊力: 25&#xA;速 度: 7" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
51+
<Button x:Name="btnSoldier4" Height="70" Margin="565,15,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="82" Click="btnSoldier4_Click" Focusable="False" ToolTip="魯夫 $ 300&#xA;血 量: 350&#xA;攻擊力: 25&#xA;速 度: 7" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
5252
<Image Source="pack://siteoforigin:,,,/Images/s1.JPG" Stretch="Fill"/>
5353
</Button>
54-
<Button x:Name="btnSoldier5" Height="70" Margin="577,10,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier5_Click" Focusable="False" ToolTip="香吉士 $ 400&#xA;血 量: 400&#xA;攻擊力: 50&#xA;速 度: 6" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
54+
<Button x:Name="btnSoldier5" Height="70" Margin="650,15,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier5_Click" Focusable="False" ToolTip="香吉士 $ 400&#xA;血 量: 400&#xA;攻擊力: 50&#xA;速 度: 6" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
5555
<Image Source="pack://siteoforigin:,,,/Images/s4.JPG" Stretch="Fill"/>
5656
</Button>
57-
<Button x:Name="btnSoldier6" Height="70" Margin="661,10,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier6_Click" Focusable="False" ToolTip="艾斯 $ 500&#xA;血 量: 500&#xA;攻擊力: 40&#xA;速 度: 5" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
57+
<Button x:Name="btnSoldier6" Height="70" Margin="734,15,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier6_Click" Focusable="False" ToolTip="艾斯 $ 500&#xA;血 量: 500&#xA;攻擊力: 40&#xA;速 度: 5" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
5858
<Image Source="pack://siteoforigin:,,,/Images/s7.JPG" Stretch="Fill"/>
5959
</Button>
60-
<Button x:Name="btnSoldier7" Height="70" Margin="745,10,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier7_Click" Focusable="False" ToolTip="羅賓 $ 600&#xA;血 量: 1500&#xA;攻擊力: 10&#xA;速 度: 1" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
60+
<Button x:Name="btnSoldier7" Height="70" Margin="818,15,0,0" VerticalAlignment="Top" IsEnabled="False" HorizontalAlignment="Left" Width="81" Click="btnSoldier7_Click" Focusable="False" ToolTip="羅賓 $ 600&#xA;血 量: 1500&#xA;攻擊力: 10&#xA;速 度: 1" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FF020202" OpacityMask="#FF020202">
6161
<Image Source="pack://siteoforigin:,,,/Images/s5.JPG" Stretch="Fill"/>
6262
</Button>
63-
<Button x:Name="btnUnlock1" Content="$" HorizontalAlignment="Left" Height="26" Margin="323,41,0,0" VerticalAlignment="Top" Width="81" Click="btnUnlock1_Click" Focusable="False" Background="#FFB09F9F"/>
64-
<Button x:Name="btnUnlock2" Content="$" HorizontalAlignment="Left" Margin="407,41,0,0" Width="81" Click="btnUnlock2_Click" Focusable="False" Height="26" VerticalAlignment="Top" Background="#FFB09F9F"/>
65-
<Button x:Name="btnUnlock3" Content="$" HorizontalAlignment="Left" Height="26" Margin="492,41,0,0" VerticalAlignment="Top" Width="82" Click="btnUnlock3_Click" Focusable="False" Background="#FFB09F9F"/>
66-
<Button x:Name="btnUnlock4" Content="$" HorizontalAlignment="Left" Height="26" Margin="576,41,0,0" VerticalAlignment="Top" Width="82" Click="btnUnlock4_Click" Focusable="False" Background="#FFB09F9F"/>
67-
<Button x:Name="btnUnlock5" Content="$" HorizontalAlignment="Left" Height="26" Margin="660,41,0,0" VerticalAlignment="Top" Width="82" Click="btnUnlock5_Click" Focusable="False" Background="#FFB09F9F"/>
68-
<Button x:Name="btnUnlock6" Content="$" HorizontalAlignment="Left" Height="26" Margin="744,41,0,0" VerticalAlignment="Top" Width="82" Click="btnUnlock6_Click" Focusable="False" Background="#FFB09F9F"/>
69-
<Button x:Name="btnUpgradeTower" Content="升級塔" HorizontalAlignment="Left" Height="54" Margin="879,21,0,0" VerticalAlignment="Top" Width="79" Click="btnUpgradeTower_Click" Focusable="False" Background="#FFB09F9F" BorderThickness="0"/>
63+
<Button x:Name="btnUnlock1" Content="$" HorizontalAlignment="Left" Height="26" Margin="396,46,0,0" VerticalAlignment="Top" Width="81" Click="btnUnlock1_Click" Focusable="False" Background="#FFB09F9F"/>
64+
<Button x:Name="btnUnlock2" Content="$" HorizontalAlignment="Left" Margin="480,46,0,0" Width="81" Click="btnUnlock2_Click" Focusable="False" Height="26" VerticalAlignment="Top" Background="#FFB09F9F"/>
65+
<Button x:Name="btnUnlock3" Content="$" HorizontalAlignment="Left" Height="26" Margin="565,46,0,0" VerticalAlignment="Top" Width="82" Click="btnUnlock3_Click" Focusable="False" Background="#FFB09F9F"/>
66+
<Button x:Name="btnUnlock4" Content="$" HorizontalAlignment="Left" Height="26" Margin="649,46,0,0" VerticalAlignment="Top" Width="82" Click="btnUnlock4_Click" Focusable="False" Background="#FFB09F9F"/>
67+
<Button x:Name="btnUnlock5" Content="$" HorizontalAlignment="Left" Height="26" Margin="733,46,0,0" VerticalAlignment="Top" Width="82" Click="btnUnlock5_Click" Focusable="False" Background="#FFB09F9F"/>
68+
<Button x:Name="btnUnlock6" Content="$" HorizontalAlignment="Left" Height="26" Margin="817,46,0,0" VerticalAlignment="Top" Width="82" Click="btnUnlock6_Click" Focusable="False" Background="#FFB09F9F"/>
69+
<Button x:Name="btnUpgradeTower" Content="升級塔" HorizontalAlignment="Left" Height="70" Margin="981,15,0,0" VerticalAlignment="Top" Width="79" Click="btnUpgradeTower_Click" Focusable="False" Background="#FFB09F9F" BorderThickness="0"/>
7070
</Grid>
71-
<Grid x:Name="gridTopBar" Background="#FFC5BCBC" d:IsLocked="True">
71+
<Grid x:Name="gridTopBar" Background="#FFC5BCBC">
7272
<Label Content="HP/maxHP" Margin="757,0,0,10" Height="25" HorizontalContentAlignment="Right" BorderBrush="#FF0F0909" BorderThickness="1" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="200" Background="#FFFB0505" />
7373
<Label Content="HP/maxHP" Margin="35,0,0,10" Height="25" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="200" Background="#FFF70F0F" />
7474
<Label Content="難度" HorizontalAlignment="Left" Margin="456,16,0,0" VerticalAlignment="Top" Width="107"/>

Side-scrolling Tower Defense/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ private void Reset(int difficulty)
120120
dock1.VerticalAlignment = System.Windows.VerticalAlignment.Top;
121121
dock1.HorizontalAlignment = System.Windows.HorizontalAlignment.Left;
122122
dock1.FlowDirection = System.Windows.FlowDirection.RightToLeft;
123-
dock1.Margin = new Thickness(700,17,0,0);
123+
dock1.Margin = new Thickness(800,17,0,0);
124124
//dock1.Background = Brushes.LightGray;
125125
grid1.Children.Add(dock1);
126126
#endregion

Side-scrolling Tower Defense/Player.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,14 @@ public Player( Grid grid1, Grid _gridTopBar)
3737
moneyGainSpeed = 10;
3838
myTower = new Tower(2000, 50, 250, 1, true, grid1, _gridTopBar);
3939
lbMoney = new Label();
40-
lbMoney.Margin = new Thickness(838, 0, 0, 220);
40+
lbMoney.Margin = new Thickness(938, 0, 0, 270);
4141
lbMoney.VerticalAlignment = VerticalAlignment.Bottom;
4242
lbMoney.HorizontalAlignment = HorizontalAlignment.Left;
4343
lbMoney.Width = 120;
4444
lbMoney.Height = 25;
4545
lbMoney.HorizontalContentAlignment = HorizontalAlignment.Right;
4646
lbMoney.BorderBrush = System.Windows.Media.Brushes.Black;
47+
lbMoney.FontWeight = FontWeights.Bold;
4748
lbMoney.BorderThickness = new System.Windows.Thickness(1, 1, 1, 1);
4849
grid1.Children.Add(lbMoney);
4950
}

0 commit comments

Comments
 (0)