You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.4 KiB
30 lines
1.4 KiB
<c:BWindow x:Class="WebTest.MainWindow"
|
|
xmlns:c="clr-namespace:SJ.Controls;assembly=SJ.Controls"
|
|
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:WebTest"
|
|
mc:Ignorable="d"
|
|
RightButtonGroupMargin="0,5,5,0"
|
|
CloseButtonColor="Black"
|
|
MinButtonColor="Black"
|
|
MaxButtonColor="Black"
|
|
Title="AAA" Height="768" Width="1024" x:Name="w">
|
|
<Grid x:Name="grid">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Text="{Binding Title,ElementName=w}" VerticalAlignment="Center" Margin="10,0,0,0"/>
|
|
<Grid Grid.Row="1" Margin="5,0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
<c:BTextBox x:Name="txtUrl" WaterRemark="请输入测试地址(携带http或https)"/>
|
|
<c:BButton x:Name="btn_navigation" Content="访问" Grid.Column="1" Click="btn_navigation_Click" Width="80"/>
|
|
</Grid>
|
|
</Grid>
|
|
</c:BWindow>
|
|
|