EnterMinCostForAgentWindow.xaml 964 B

1234567891011121314151617181920212223242526272829
  1. <Window x:Class="wpf_connection3.Windows.EnterMinCostForAgentWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:wpf_connection3.Windows"
  7. mc:Ignorable="d"
  8. Title="МИНИМАЛЬНАЯ ЦЕНА" Height="450" Width="800"
  9. Background="White">
  10. <Grid>
  11. <StackPanel
  12. Background="White"
  13. Height="1200"
  14. Orientation="Vertical" Margin="0,50,0,0">
  15. <TextBox
  16. Name="CostTextBox"
  17. />
  18. <Button
  19. Height="88"
  20. Background="PeachPuff"
  21. Content="Изменить"
  22. Click="Button_Click"
  23. />
  24. </StackPanel>
  25. </Grid>
  26. </Window>