WPF金额计算
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
开发工具:VisualStudio2015
关键技术:WPF
作者:纳兹
撰写时间:2020年12月11日
首先进行页面布局,设置它所在的行与列,HorizontalAlignment="Right"水平方向向右居中,Foreground设置颜色:
<TextBlock Text="吊牌价:
" Grid.Column="0" Grid.Row="9" HorizontalAlignment="Right"/>
<TextBox Grid.Column="1"
Grid.Row="9" x:Name="txt_hangcards" Foreground="#0c0c10"/>
<TextBlock Text="进价折扣:"
Grid.Column="3" Grid.Row="9" HorizontalAlignment="Right"/>
<TextBox Grid.Column="4"
Grid.Row="9" x:Name="txt_pricerebate" Foreground="#0c0c10"/>
<TextBlock Text="预设进价:"
Grid.Column="0" Grid.Row="11" HorizontalAlignm
WPF金额计算
最新推荐文章于 2023-02-03 11:12:17 发布