finskayMagazin/TovarV2/EditTovar.axaml
2025-06-05 11:22:50 +03:00

51 lines
1.3 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="TovarV2.EditTovar"
Title="EditTovar">
<Grid
RowDefinitions="20,100,*"
ColumnDefinitions="*,*">
<StackPanel
Grid.Row="0"
Grid.Column="0">
<TextBlock
Text="Информация о товаре">
</TextBlock>
</StackPanel>
<StackPanel
Orientation="Vertical"
Grid.Row="1"
Grid.Column="0">
<TextBox
Watermark="Наименование"
Name="nameTovar">
</TextBox>
<TextBox
Watermark="Цена"
Name="priceTovar">
</TextBox>
<TextBox
Watermark="Количество"
Name="quantityTovar">
</TextBox>
<Image
Height="100"
Width="100"
Name="ImagePath">
</Image>
<Button
Click="AddTovarImg_Click"
Content="Изменить изображение">
</Button>
<Button
Name="editOk"
Content="Готово"
Click="EditOk_Click">
</Button>
</StackPanel>
</Grid>
</Window>