implemented function edit and alllows the edit in input and output now

This commit is contained in:
Ankitkumar Satapara
2026-04-21 17:14:38 +05:30
parent 8c04e6534a
commit 3b0f6c9158
4 changed files with 97 additions and 4 deletions

View File

@@ -983,6 +983,11 @@
<StackPanel Orientation="Horizontal">
<TextBlock Text="ƒ " Foreground="#FF9800" FontWeight="Bold" />
<TextBlock Text="{Binding Title}" Foreground="Orange" FontWeight="SemiBold" />
<Button Content="✏️" Margin="6 0 0 0" Padding="2 0"
Background="Transparent" Foreground="White" BorderThickness="0"
Cursor="Hand" ToolTip="Edit Function"
Command="{Binding DataContext.Calculator.OperationsMenu.EditFunctionCommand, RelativeSource={RelativeSource AncestorType=UserControl}}"
CommandParameter="{Binding}" />
</StackPanel>
</Border>
</DataTemplate>