forked from zachtaylor1/SWProj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchPage.xaml
More file actions
33 lines (33 loc) · 1.72 KB
/
SearchPage.xaml
File metadata and controls
33 lines (33 loc) · 1.72 KB
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
<Page x:Class="SWProjv1.SearchPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SWProjv1"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Title="SearchPage">
<Grid Background="#FFE5E5E5" Name="grid">
<Grid.RowDefinitions>
<RowDefinition Height="0.05*"/>
<RowDefinition Height="0.1*"/>
<RowDefinition Height="0.07*"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition Width="1.4*"/>
</Grid.ColumnDefinitions>
<TextBlock Grid.ColumnSpan="2" Name="type_txt" FontSize="14"/>
<TextBox Grid.Row="1" Name="search_txt"/>
<Button Name="search_btn" Content="Search" Click="search_btn_Click" Grid.Row="2"/>
<ListBox Name="searchItems" Grid.Row="3"/>
<Button Name ="CreateButton" Grid.Row="0" Grid.Column="1" Content="New Message" Visibility="Hidden"/>
<TextBox Name="Student_Number" Grid.Row="1" Grid.Column="1" Text="UserNumber" Visibility="Hidden"/>
<Button Name="Send" Grid.Row="2" Grid.Column="1" Content="SEND" Visibility="Hidden" Click="Send_Click"/>
<TextBox Name="MessageText" Grid.Row="3" Grid.Column="1" Text="Message Text" Visibility="Hidden"/>
<!--Grid Name="searchItem" Grid.Row="3" Grid.Column="1">
<TextBlock Name="searchText_test" Text="BBBBB"/>
</-->
</Grid>
</Page>