2018-03-24 11:07:43 +08:00
|
|
|
|
<Window x:Class="BililiveRecorder.WPF.SettingsWindow"
|
|
|
|
|
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:BililiveRecorder.WPF"
|
2018-03-29 11:39:44 +08:00
|
|
|
|
xmlns:core="clr-namespace:BililiveRecorder.Core;assembly=BililiveRecorder.Core"
|
2018-10-31 06:22:38 +08:00
|
|
|
|
xmlns:flv="clr-namespace:BililiveRecorder.FlvProcessor;assembly=BililiveRecorder.FlvProcessor"
|
2018-03-24 11:07:43 +08:00
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
ShowInTaskbar="False" ResizeMode="NoResize"
|
2019-11-13 19:47:49 +08:00
|
|
|
|
Title="设置 - 录播姬" Height="500" Width="270">
|
2018-03-29 11:39:44 +08:00
|
|
|
|
<Window.Resources>
|
2018-11-07 07:14:00 +08:00
|
|
|
|
<local:ValueConverterGroup x:Key="EnumToInvertBooleanConverter">
|
|
|
|
|
<local:EnumToBooleanConverter/>
|
|
|
|
|
<local:BooleanInverterConverter/>
|
|
|
|
|
</local:ValueConverterGroup>
|
|
|
|
|
<local:EnumToBooleanConverter x:Key="EnumToBooleanConverter"/>
|
2018-03-29 11:39:44 +08:00
|
|
|
|
</Window.Resources>
|
2018-03-24 11:07:43 +08:00
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid Margin="5">
|
|
|
|
|
<Grid.RowDefinitions>
|
2018-11-07 07:14:00 +08:00
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
2018-03-29 11:39:44 +08:00
|
|
|
|
<RowDefinition Height="Auto"/>
|
2018-04-06 18:08:05 +08:00
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
2019-11-13 19:47:49 +08:00
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
2018-03-24 11:07:43 +08:00
|
|
|
|
<RowDefinition Height="1*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.Resources>
|
|
|
|
|
<ResourceDictionary>
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
<Style.Setters>
|
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Right"></Setter>
|
|
|
|
|
<Setter Property="VerticalAlignment" Value="Center"></Setter>
|
|
|
|
|
</Style.Setters>
|
|
|
|
|
</Style>
|
|
|
|
|
</ResourceDictionary>
|
|
|
|
|
</Grid.Resources>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<Grid Grid.Row="0">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
2018-12-19 21:24:39 +08:00
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
2019-10-31 22:02:19 +08:00
|
|
|
|
<RowDefinition Height="Auto"/>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
</Grid.RowDefinitions>
|
2018-03-24 11:07:43 +08:00
|
|
|
|
<Grid.ColumnDefinitions>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<ColumnDefinition Width="2*"/>
|
|
|
|
|
<ColumnDefinition Width="3*"/>
|
2018-03-24 11:07:43 +08:00
|
|
|
|
</Grid.ColumnDefinitions>
|
2019-11-24 08:54:33 +08:00
|
|
|
|
<TextBlock Grid.Row="0" Grid.Column="0">录制重试间隔:</TextBlock>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<Grid Grid.Row="0" Grid.Column="1" VerticalAlignment="Center">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2018-12-19 21:24:39 +08:00
|
|
|
|
<local:ClickSelectTextBox Grid.Column="0" Text="{Binding TimingStreamRetry,Delay=500,UpdateSourceTrigger=PropertyChanged}">
|
|
|
|
|
<local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
<ToolTip>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<StackPanel.Resources>
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
<Setter Property="TextAlignment" Value="Left"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</StackPanel.Resources>
|
|
|
|
|
<TextBlock FontWeight="Bold">注:</TextBlock>
|
|
|
|
|
<TextBlock>录制断开后等待多长时间再尝试开始录制</TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<TextBlock Grid.Column="1" Margin="5,0,10,0">毫秒</TextBlock>
|
|
|
|
|
</Grid>
|
|
|
|
|
<TextBlock Grid.Row="1" Grid.Column="0">录制连接超时:</TextBlock>
|
|
|
|
|
<Grid Grid.Row="1" Grid.Column="1" VerticalAlignment="Center">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2018-12-19 21:24:39 +08:00
|
|
|
|
<local:ClickSelectTextBox Grid.Column="0" Text="{Binding TimingStreamConnect,Delay=500,UpdateSourceTrigger=PropertyChanged}">
|
|
|
|
|
<local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
<ToolTip>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<StackPanel.Resources>
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
<Setter Property="TextAlignment" Value="Left"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</StackPanel.Resources>
|
|
|
|
|
<TextBlock FontWeight="Bold">注:</TextBlock>
|
|
|
|
|
<TextBlock>发出连接直播服务器的请求后等待多长时间</TextBlock>
|
|
|
|
|
<TextBlock>防止直播服务器长时间不返回数据导致卡住</TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<TextBlock Grid.Column="1" Margin="5,0,10,0">毫秒</TextBlock>
|
|
|
|
|
</Grid>
|
|
|
|
|
<TextBlock Grid.Row="2" Grid.Column="0">弹幕重连间隔:</TextBlock>
|
|
|
|
|
<Grid Grid.Row="2" Grid.Column="1" VerticalAlignment="Center">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2018-12-19 21:24:39 +08:00
|
|
|
|
<local:ClickSelectTextBox Grid.Column="0" Text="{Binding TimingDanmakuRetry,Delay=500,UpdateSourceTrigger=PropertyChanged}">
|
|
|
|
|
<local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
<ToolTip>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<StackPanel.Resources>
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
<Setter Property="TextAlignment" Value="Left"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</StackPanel.Resources>
|
|
|
|
|
<TextBlock FontWeight="Bold">注:</TextBlock>
|
|
|
|
|
<TextBlock>弹幕服务器被断开后等待多长时间再尝试连接</TextBlock>
|
|
|
|
|
<TextBlock>监控开播的主要途径是通过弹幕服务器发送的信息</TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<TextBlock Grid.Column="1" Margin="5,0,10,0">毫秒</TextBlock>
|
|
|
|
|
</Grid>
|
2019-11-24 08:54:33 +08:00
|
|
|
|
<TextBlock Grid.Row="3" Grid.Column="0">接收数据超时:</TextBlock>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<Grid Grid.Row="3" Grid.Column="1" VerticalAlignment="Center">
|
2018-12-19 21:24:39 +08:00
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<local:ClickSelectTextBox Grid.Column="0" Text="{Binding TimingWatchdogTimeout,Delay=500,UpdateSourceTrigger=PropertyChanged}">
|
|
|
|
|
<local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
<ToolTip>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<StackPanel.Resources>
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
<Setter Property="TextAlignment" Value="Left"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</StackPanel.Resources>
|
|
|
|
|
<TextBlock FontWeight="Bold">注:</TextBlock>
|
|
|
|
|
<TextBlock>在一定时间没有收到直播服务器发送的数据后断开重连。</TextBlock>
|
|
|
|
|
<TextBlock>用于防止因为玄学网络问题导致卡住</TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox>
|
|
|
|
|
<TextBlock Grid.Column="1" Margin="5,0,10,0">毫秒</TextBlock>
|
|
|
|
|
</Grid>
|
|
|
|
|
<TextBlock Grid.Row="5" Grid.Column="0">开播检查间隔:</TextBlock>
|
|
|
|
|
<Grid Grid.Row="5" Grid.Column="1" VerticalAlignment="Center">
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<local:ClickSelectTextBox Grid.Column="0" Text="{Binding TimingCheckInterval,Delay=500,UpdateSourceTrigger=PropertyChanged}">
|
|
|
|
|
<local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
<ToolTip>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<StackPanel.Resources>
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
<Setter Property="TextAlignment" Value="Left"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</StackPanel.Resources>
|
|
|
|
|
<TextBlock FontWeight="Bold">注:</TextBlock>
|
|
|
|
|
<TextBlock>此项影响的时间间隔是定时请求HTTP接口的间隔,</TextBlock>
|
|
|
|
|
<TextBlock>主要目的是防止没有从弹幕服务器收到开播消息。</TextBlock>
|
|
|
|
|
<TextBlock>通常主播开播后会通过弹幕服务器通知录播姬开始录制,</TextBlock>
|
|
|
|
|
<TextBlock>所以此项不需要设置太短。</TextBlock>
|
|
|
|
|
<TextBlock>时间间隔设置太短会导致被B站服务器屏蔽,无法录制。</TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox>
|
|
|
|
|
<TextBlock Grid.Column="1" Margin="5,0,10,0">秒</TextBlock>
|
|
|
|
|
</Grid>
|
2018-03-24 11:07:43 +08:00
|
|
|
|
</Grid>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<Separator Grid.Row="1"/>
|
|
|
|
|
<Grid Grid.Row="2">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
2018-03-24 11:07:43 +08:00
|
|
|
|
<Grid.ColumnDefinitions>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<ColumnDefinition Width="2*"/>
|
|
|
|
|
<ColumnDefinition Width="3*"/>
|
2018-03-24 11:07:43 +08:00
|
|
|
|
</Grid.ColumnDefinitions>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<TextBlock Grid.Row="1" Grid.Column="0">剪辑过去时长:</TextBlock>
|
|
|
|
|
<Grid Grid.Row="1" Grid.Column="1" VerticalAlignment="Center">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<local:ClickSelectTextBox Grid.Column="0" Text="{Binding ClipLengthPast,Delay=500,UpdateSourceTrigger=PropertyChanged}"
|
|
|
|
|
IsEnabled="{Binding Path=EnabledFeature, Converter={StaticResource EnumToInvertBooleanConverter},
|
|
|
|
|
ConverterParameter={x:Static flv:EnabledFeature.RecordOnly}}"/>
|
|
|
|
|
<TextBlock Grid.Column="1" Margin="5,0,10,0">秒</TextBlock>
|
|
|
|
|
</Grid>
|
|
|
|
|
<TextBlock Grid.Row="2" Grid.Column="0">剪辑将来时长:</TextBlock>
|
|
|
|
|
<Grid Grid.Row="2" Grid.Column="1" VerticalAlignment="Center">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<local:ClickSelectTextBox Grid.Column="0" Text="{Binding ClipLengthFuture,Delay=500,UpdateSourceTrigger=PropertyChanged}"
|
|
|
|
|
IsEnabled="{Binding Path=EnabledFeature, Converter={StaticResource EnumToInvertBooleanConverter},
|
|
|
|
|
ConverterParameter={x:Static flv:EnabledFeature.RecordOnly}}"/>
|
|
|
|
|
<TextBlock Grid.Column="1" Margin="5,0,10,0">秒</TextBlock>
|
|
|
|
|
</Grid>
|
|
|
|
|
<StackPanel Grid.Row="3" Grid.ColumnSpan="2" Margin="10,0">
|
|
|
|
|
<RadioButton GroupName="EnabledFeature" IsChecked="{Binding Path=EnabledFeature, Converter={StaticResource EnumToBooleanConverter},
|
|
|
|
|
ConverterParameter={x:Static flv:EnabledFeature.ClipOnly}}" ToolTipService.InitialShowDelay="0"
|
|
|
|
|
ToolTip="不保存所有直播数据到硬盘">只使用即时回放剪辑功能</RadioButton>
|
|
|
|
|
<RadioButton GroupName="EnabledFeature" IsChecked="{Binding Path=EnabledFeature, Converter={StaticResource EnumToBooleanConverter},
|
|
|
|
|
ConverterParameter={x:Static flv:EnabledFeature.RecordOnly}}" ToolTipService.InitialShowDelay="0"
|
|
|
|
|
ToolTip="占内存更少,但不能剪辑回放">只使用录制功能</RadioButton>
|
|
|
|
|
<RadioButton GroupName="EnabledFeature" IsChecked="{Binding Path=EnabledFeature, Converter={StaticResource EnumToBooleanConverter},
|
2018-11-07 07:14:00 +08:00
|
|
|
|
ConverterParameter={x:Static flv:EnabledFeature.Both}}">同时启用两个功能</RadioButton>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Separator Grid.Row="3"/>
|
|
|
|
|
<Grid Grid.Row="4">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
2018-11-07 07:14:00 +08:00
|
|
|
|
<Grid.ColumnDefinitions>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<ColumnDefinition Width="2*"/>
|
|
|
|
|
<ColumnDefinition Width="3*"/>
|
2018-11-07 07:14:00 +08:00
|
|
|
|
</Grid.ColumnDefinitions>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<TextBlock Grid.Row="0" Grid.Column="0">自动切割单位:</TextBlock>
|
|
|
|
|
<Grid Grid.Row="0" Grid.Column="1" VerticalAlignment="Center">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<local:ClickSelectTextBox Grid.Column="0" Text="{Binding CuttingNumber,Delay=500,UpdateSourceTrigger=PropertyChanged}"
|
2018-11-07 07:14:00 +08:00
|
|
|
|
ToolTipService.InitialShowDelay="0" ToolTipService.ShowDuration="20000"
|
|
|
|
|
IsEnabled="{Binding Path=CuttingMode, Converter={StaticResource EnumToInvertBooleanConverter},
|
|
|
|
|
ConverterParameter={x:Static flv:AutoCuttingMode.Disabled}}">
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
<ToolTip>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<StackPanel.Resources>
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
<Setter Property="TextAlignment" Value="Left"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</StackPanel.Resources>
|
|
|
|
|
<TextBlock FontWeight="Bold">注:</TextBlock>
|
|
|
|
|
<TextBlock>实际切割出来的视频文件会比设定的要大一点</TextBlock>
|
|
|
|
|
<TextBlock>根据实际情况不同,可能会 大不到1MiB 或 长几秒钟</TextBlock>
|
|
|
|
|
<TextBlock>请根据实际需求调整</TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox.ToolTip>
|
|
|
|
|
</local:ClickSelectTextBox>
|
|
|
|
|
<TextBlock Grid.Column="1" Margin="5,0,10,0">分 或 MiB</TextBlock>
|
|
|
|
|
</Grid>
|
|
|
|
|
<StackPanel Grid.Row="1" Grid.ColumnSpan="2" Margin="10,0">
|
|
|
|
|
<RadioButton GroupName="CuttingMode" IsChecked="{Binding Path=CuttingMode, Converter={StaticResource EnumToBooleanConverter},
|
2018-11-07 07:14:00 +08:00
|
|
|
|
ConverterParameter={x:Static flv:AutoCuttingMode.Disabled}}">不切割录制的视频文件</RadioButton>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<RadioButton GroupName="CuttingMode" IsChecked="{Binding Path=CuttingMode, Converter={StaticResource EnumToBooleanConverter},
|
2018-11-07 07:14:00 +08:00
|
|
|
|
ConverterParameter={x:Static flv:AutoCuttingMode.ByTime}}">根据视频时间(分)切割</RadioButton>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
<RadioButton GroupName="CuttingMode" IsChecked="{Binding Path=CuttingMode, Converter={StaticResource EnumToBooleanConverter},
|
2018-11-07 07:14:00 +08:00
|
|
|
|
ConverterParameter={x:Static flv:AutoCuttingMode.BySize}}">根据文件大小(MiB)切割</RadioButton>
|
2018-12-18 00:16:24 +08:00
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
2019-10-31 22:02:19 +08:00
|
|
|
|
<Separator Grid.Row="5"/>
|
|
|
|
|
<Grid Grid.Row="6" Margin="10,0">
|
2019-11-13 19:47:49 +08:00
|
|
|
|
<CheckBox IsChecked="{Binding AvoidTxy}">
|
|
|
|
|
<TextBlock>
|
|
|
|
|
尽量不使用有问题的腾讯云服务器
|
|
|
|
|
<LineBreak/> 可减少录出奇葩损坏文件的概率
|
|
|
|
|
</TextBlock>
|
|
|
|
|
</CheckBox>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Separator Grid.Row="7"/>
|
|
|
|
|
<Grid Grid.Row="8" Margin="10,0">
|
2019-10-31 22:02:19 +08:00
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<TextBlock HorizontalAlignment="Left">请求 API 时使用 Cookie: (可选)</TextBlock>
|
|
|
|
|
<local:ClickSelectTextBox Grid.Row="1" Text="{Binding Cookie,Delay=500,UpdateSourceTrigger=PropertyChanged}"/>
|
|
|
|
|
</Grid>
|
2018-11-07 07:14:00 +08:00
|
|
|
|
<!--
|
2018-03-24 11:07:43 +08:00
|
|
|
|
<TextBlock Grid.Row="4" Grid.Column="0"></TextBlock>
|
|
|
|
|
<StackPanel Grid.Row="4" Grid.Column="1">
|
|
|
|
|
|
|
|
|
|
</StackPanel>
|
2018-11-07 07:14:00 +08:00
|
|
|
|
-->
|
2018-03-24 11:07:43 +08:00
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="1"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
VerticalAlignment="Center">
|
2018-11-01 23:57:15 +08:00
|
|
|
|
<Button Click="Save" Padding="20,5" Margin="5" IsDefault="True">保存</Button>
|
|
|
|
|
<Button Click="Cancel" Padding="20,5" Margin="5" IsCancel="True">取消</Button>
|
2018-03-24 11:07:43 +08:00
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|