skindervik

WEB-SCRAPING-ANGLE-SHARP-WPF-XAML

Aug 3rd, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.91 KB | None | 0 0
  1. <UserControl x:Class="webBot9000.MainGui"
  2.              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.              xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5.              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6.              xmlns:local="clr-namespace:webBot9000"
  7.              mc:Ignorable="d"
  8.              d:DesignHeight="450" d:DesignWidth="800">
  9.     <Grid>
  10.         <Grid.ColumnDefinitions>
  11.             <ColumnDefinition Width="20"/>
  12.             <ColumnDefinition Width="1*"/>
  13.             <ColumnDefinition Width="20"/>
  14.         </Grid.ColumnDefinitions>
  15.         <Grid.RowDefinitions>
  16.             <RowDefinition Height="50"/>
  17.             <RowDefinition Height="1*"/>
  18.         </Grid.RowDefinitions>
  19.        
  20.         <ListView Grid.Column="1" Grid.Row="1" Name="ViewList"/>
  21.  
  22.         <Grid Grid.Column="1" >
  23.             <Grid.ColumnDefinitions>
  24.                 <ColumnDefinition Width="200"/>
  25.                 <ColumnDefinition Width="1*"/>
  26.                 <ColumnDefinition Width="135"/>
  27.                 <ColumnDefinition Width="65"/>
  28.             </Grid.ColumnDefinitions>
  29.  
  30.             <Button Name="SEARCH_BUTTON" Click="SEARCH_BUTTON_Click" Grid.Column="3" FontSize="15" Width="65" Height="25" FontWeight="bold" VerticalAlignment="Bottom" HorizontalAlignment="Right" >SEARCH</Button>
  31.             <TextBlock Name="COUNT" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="30" FontWeight="Bold">0</TextBlock>
  32.             <TextBox Name="WORD" Grid.Column="2" Height="25" VerticalAlignment="Bottom" FontWeight="bold" FontSize="15">youtube</TextBox>
  33.             <TextBox Name="URL" Grid.Column="0" Height="25" VerticalAlignment="Bottom" FontWeight="bold" FontSize="15">https://google.com/</TextBox>
  34.        
  35.         </Grid>
  36.     </Grid>
  37. </UserControl>
  38.  
Add Comment
Please, Sign In to add comment