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.3 KiB
30 lines
1.3 KiB
2 years ago
|
<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="WebTest" Height="768" Width="1024">
|
||
|
<Grid x:Name="grid">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="30"/>
|
||
|
<RowDefinition Height="40"/>
|
||
|
<RowDefinition/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<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>
|