finskayMagazin/TovarV2/EditTovar.axaml

51 lines
1.3 KiB
Plaintext
Raw Normal View History

2025-06-05 08:22:50 +00:00
<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>