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

47 lines
1.1 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="450" d:DesignHeight="300"
x:Class="TovarV2.AddTovar"
Title="AddTovar">
<Grid
RowDefinitions="30,80,40">
<StackPanel
Grid.Row="0"
Orientation="Vertical">
<TextBlock
Text="Заполните информацию о товаре">
</TextBlock>
<TextBox
Name="nameTov"
Watermark="Наименование">
</TextBox>
<TextBox
Name="priceTov"
Watermark="Цена">
</TextBox>
<TextBox
Name="quantityTov"
Watermark="Количество">
</TextBox>
<Image
Height="100"
Width="100"
Name="ImagePath">
</Image>
<Button
Click="AddTovarImg_Click"
Content="Добавить изображение">
</Button>
<Button
Click="AddTovarOk_Click"
Content="Готово">
</Button>
<TextBlock
Name="errorMsg">
</TextBlock>
</StackPanel>
</Grid>
</Window>