forked from MahmoudAdelkamal/Auction_management_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RemoveCategoryTextBox.xaml
14 lines (13 loc) · 1 KB
/
RemoveCategoryTextBox.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Window x:Class="Auction_Management_system.RemoveCategoryTextBox"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:local="clr-namespace:Auction_Management_system"
mc:Ignorable="d"
Title="RemoveCategoryTextBox" Height="200" Width="300" WindowStartupLocation="CenterScreen">
<Grid>
<TextBox x:Name="DeleteCategoryName" HorizontalAlignment="Left" Height="38" Margin="39,33,0,0" TextWrapping="Wrap" Text="EnterCategoryName" VerticalAlignment="Top" Width="224" TextAlignment="Center" Padding="1,5,1,1" FontFamily="T"/>
<Button Content="Remove" HorizontalAlignment="Left" Margin="81,109,0,0" VerticalAlignment="Top" Width="129" Height="43" Click="RemoveButton" FontSize="12" FontWeight="Bold" Background="#FF2196F3"/>
</Grid>
</Window>