Renamed buttons to be more descriptive

This commit is contained in:
2026-05-12 12:55:43 -04:00
parent e417b0daf4
commit 2a5ef88f3b
+2 -2
View File
@@ -39,8 +39,8 @@
<TextBox Text="{Binding PreTax, UpdateSourceTrigger=PropertyChanged, Mode=OneWayToSource}" Grid.Column="1" Grid.Row="3"/>
<TextBox Text="{Binding PostTax, UpdateSourceTrigger=PropertyChanged, Mode=OneWayToSource}" Grid.Column="1" Grid.Row="4"/>
<TextBox Text="{Binding RetirementContribution, UpdateSourceTrigger=PropertyChanged, Mode=OneWayToSource}" Grid.Column="1" Grid.Row="5"/>
<Button Content="Calculate" Command="{Binding DoCalculate, UpdateSourceTrigger=PropertyChanged}" Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="6"/>
<Button Content="Analyze" Command="{Binding DoAnalyze, UpdateSourceTrigger=PropertyChanged}" Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="7"/>
<Button Content="Calculate Taxes and Take-Home" Command="{Binding DoCalculate, UpdateSourceTrigger=PropertyChanged}" Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="6"/>
<Button Content="Take-Home Comparison" Command="{Binding DoAnalyze, UpdateSourceTrigger=PropertyChanged}" Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="7"/>
<Button Content="Debug" Command="{Binding DoDebug, UpdateSourceTrigger=PropertyChanged}" Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="8"/>
<TextBlock Text="Output:" Grid.Column="2" Grid.Row="0"/>
<TextBox Text="{Binding Output, UpdateSourceTrigger=PropertyChanged, Mode=OneWay}" Grid.Column="2" Grid.Row="1" Grid.RowSpan="9" IsReadOnly="True" TextWrapping="Wrap"/>