-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUpdate_Borrow_Money.xaml
63 lines (62 loc) · 5.24 KB
/
Update_Borrow_Money.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Window x:Class="Money_Savings_Tool.Update_Borrow_Money"
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:Money_Savings_Tool"
mc:Ignorable="d"
Title="Update_Borrow_Money" Height="550" Width="945">
<Grid>
<ComboBox x:Name="MyComboBox" HorizontalAlignment="Left" Margin="185,229,0,0" VerticalAlignment="Top" Width="108" Height="25" Background="{x:Null}" BorderBrush="{x:Null}" FontSize="16" FontFamily="Comic Sans MS">
<ComboBoxItem Background="#FFF6F67E" Content="Give" IsSelected="true" />
<ComboBoxItem Background="#FF30F96C" Content="Take"/>
</ComboBox>
<Label Content="Phone" HorizontalAlignment="Left" Margin="55,105,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Comic Sans MS" Width="63"/>
<Label Content="Amount" HorizontalAlignment="Left" Margin="55,156,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Comic Sans MS" Width="82"/>
<TextBox x:Name="phone1" HorizontalAlignment="Left" Height="22" Margin="102,134,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="196" FontSize="16" FontFamily="Comic Sans MS" BorderThickness="0,0,0,1" BorderBrush="#FFD30447"/>
<TextBox x:Name="amount" HorizontalAlignment="Left" Height="22" Margin="102,187,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="196" FontSize="16" FontFamily="Comic Sans MS" BorderThickness="0,0,0,1" BorderBrush="#FFD30447"/>
<Label Content="Select Option" HorizontalAlignment="Left" Margin="68,222,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Comic Sans MS" Width="145"/>
<Label Content="Want to delete any event?" HorizontalAlignment="Left" Margin="68,352,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Comic Sans MS" Width="245"/>
<Label Content="Phone" HorizontalAlignment="Left" Margin="70,382,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Comic Sans MS" Width="63"/>
<TextBox x:Name="phone2" HorizontalAlignment="Left" Height="22" Margin="117,412,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="196" FontSize="16" FontFamily="Comic Sans MS" BorderThickness="0,0,0,1" BorderBrush="#FFD30447"/>
<Button Content="Update" HorizontalAlignment="Left" Margin="185,279,0,0" VerticalAlignment="Top" Width="98" Height="27" Background="{x:Null}" FontSize="16" FontFamily="Comic Sans MS" BorderThickness="0,0,0,1" Click="Update_Event_Button">
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="30"/>
</Style>
</Button.Resources>
</Button>
<Button Content="Delete" HorizontalAlignment="Left" Margin="185,450,0,0" VerticalAlignment="Top" Width="98" Height="27" Background="{x:Null}" FontSize="16" FontFamily="Comic Sans MS" BorderThickness="0,0,0,1" Click="Delete_Event_Button">
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="30"/>
</Style>
</Button.Resources>
</Button>
<Button Content="Back" HorizontalAlignment="Left" Margin="0,4,0,0" VerticalAlignment="Top" Width="98" Height="27" Background="{x:Null}" FontSize="16" FontFamily="Comic Sans MS" BorderThickness="0,0,0,1" Click="Back_Button">
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="30"/>
</Style>
</Button.Resources>
</Button>
<Label x:Name="UpdatePhone" Content="" HorizontalAlignment="Left" Margin="312,124,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Comic Sans MS" Width="205"/>
<Label x:Name="UpdateAmount" Content="" HorizontalAlignment="Left" Margin="312,177,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Comic Sans MS" Width="205"/>
<Label x:Name="DeletePhone" Content="" HorizontalAlignment="Left" Margin="318,402,0,0" VerticalAlignment="Top" FontSize="16" FontFamily="Comic Sans MS" Width="359"/>
<DataGrid x:Name="gridView" HorizontalAlignment="Left" Height="121" Margin="535,71,0,0" VerticalAlignment="Top" Width="375"/>
<DockPanel HorizontalAlignment="Left" Height="100" LastChildFill="False" Margin="470,410,0,0" VerticalAlignment="Top" Width="100"/>
<StackPanel HorizontalAlignment="Left" Height="395" Margin="775,226,-178,-102" VerticalAlignment="Top" Width="340" RenderTransformOrigin="0.5,0.5">
<StackPanel.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform AngleY="-36.417"/>
<RotateTransform Angle="-12.415"/>
<TranslateTransform Y="-121.723"/>
</TransformGroup>
</StackPanel.RenderTransform>
<StackPanel.Background>
<ImageBrush ImageSource="u2222se.png"/>
</StackPanel.Background>
</StackPanel>
</Grid>
</Window>