Commit 5346a6b5 by 鲁志-悦动

主页面优化

parent 889ad032
...@@ -110,12 +110,12 @@ ...@@ -110,12 +110,12 @@
</StackPanel> </StackPanel>
</Grid> </Grid>
<!-- 主体 --> <!-- 主体 -->
<Grid Grid.Row="1" Margin="40,0,40,10"> <Grid Grid.Row="1" Margin="15">
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="45" /> <RowDefinition Height="45" />
<RowDefinition Height="*" /> <RowDefinition Height="*" />
<RowDefinition Height="30" />
<RowDefinition Height="*" /> <RowDefinition Height="*" />
<RowDefinition Height="30" />
</Grid.RowDefinitions> </Grid.RowDefinitions>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<!--<ColumnDefinition Width="230*" /> <!--<ColumnDefinition Width="230*" />
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
</Grid.ColumnDefinitions> </Grid.ColumnDefinitions>
<!-- 背景border --> <!-- 背景border -->
<Border <Border
Grid.RowSpan="2" Grid.RowSpan="4"
Grid.ColumnSpan="3" Grid.ColumnSpan="3"
Background="#2C333B" Background="#2C333B"
CornerRadius="6" /> CornerRadius="6" />
...@@ -190,8 +190,8 @@ ...@@ -190,8 +190,8 @@
</Slider> </Slider>
</Canvas>--> </Canvas>-->
<Slider <Slider
Grid.Row="2" Grid.Row="3"
Width="740" Width="Auto"
Height="30" Height="30"
AutoToolTipPlacement="BottomRight" AutoToolTipPlacement="BottomRight"
AutoToolTipPrecision="0" AutoToolTipPrecision="0"
...@@ -209,7 +209,7 @@ ...@@ -209,7 +209,7 @@
</b:Interaction.Triggers> </b:Interaction.Triggers>
</Slider> </Slider>
<WrapPanel <WrapPanel
Grid.Row="3" Grid.Row="2"
Grid.Column="2" Grid.Column="2"
Margin="90,0,0,0"> Margin="90,0,0,0">
<Grid> <Grid>
...@@ -916,18 +916,20 @@ ...@@ -916,18 +916,20 @@
MouseLeftButtonDown="cam1_MouseLeftButtonDown" MouseLeftButtonDown="cam1_MouseLeftButtonDown"
NDIKey="{x:Static Member=domain:NDIViewKeys.CAM_1}" NDIKey="{x:Static Member=domain:NDIViewKeys.CAM_1}"
VideoBorderBrush="#46AFA0" /> VideoBorderBrush="#46AFA0" />
<!-- Replay窗口 -->
<Grid <Grid
Grid.Row="3" Grid.Row="2"
Grid.Column="0" Grid.Column="0"
Visibility="{Binding SliderVisibility}"> Visibility="{Binding SliderVisibility}">
<local:NDIView <local:NDIView
x:Name="cam3" x:Name="cam3"
Margin="10" Margin="10"
IsHiddenSetting="True" IsHiddenSetting="True"
NDIKey="{x:Static Member=domain:NDIViewKeys.CAM_3}" /> NDIKey="{x:Static Member=domain:NDIViewKeys.CAM_3}"
VideoBorderBrush="#378CFF" />
</Grid> </Grid>
<StackPanel Grid.Row="1" Grid.Column="1"> <StackPanel Grid.Row="1" Grid.Column="1">
<Button <Button
Width="130" Width="130"
......
...@@ -628,8 +628,9 @@ namespace VIZ.FGOUT.Module ...@@ -628,8 +628,9 @@ namespace VIZ.FGOUT.Module
type = ClipPackageSignal.REPLAY, type = ClipPackageSignal.REPLAY,
status = ReplayStatus.PreStart status = ReplayStatus.PreStart
}; };
manager.SendJson(replayPackage);
managerAlgorithm.SendJson(replayPackage); managerAlgorithm.SendJson(replayPackage);
manager.SendJson(replayPackage);
} }
private void ReplayUnchecked() private void ReplayUnchecked()
...@@ -652,8 +653,8 @@ namespace VIZ.FGOUT.Module ...@@ -652,8 +653,8 @@ namespace VIZ.FGOUT.Module
type = ClipPackageSignal.REPLAY, type = ClipPackageSignal.REPLAY,
status = ReplayStatus.Stop status = ReplayStatus.Stop
}; };
manager.SendJson(replayPackage);
managerAlgorithm.SendJson(replayPackage); managerAlgorithm.SendJson(replayPackage);
manager.SendJson(replayPackage);
} }
#endregion #endregion
...@@ -706,8 +707,8 @@ namespace VIZ.FGOUT.Module ...@@ -706,8 +707,8 @@ namespace VIZ.FGOUT.Module
status = ReplayStatus.ReStart status = ReplayStatus.ReStart
}; };
manager.SendJson(replayPackage);
managerAlgorithm.SendJson(replayPackage); managerAlgorithm.SendJson(replayPackage);
manager.SendJson(replayPackage);
MessageBoxEx.ShowDialog("Replay Restart OK."); MessageBoxEx.ShowDialog("Replay Restart OK.");
} }
private void ReplayStop() private void ReplayStop()
......
...@@ -84,7 +84,8 @@ ...@@ -84,7 +84,8 @@
</behaviors:Interaction.Triggers> </behaviors:Interaction.Triggers>
<Grid> <Grid>
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="70" /> <!--<RowDefinition Height="70" />-->
<RowDefinition Height="0" />
<RowDefinition Height="*" /> <RowDefinition Height="*" />
</Grid.RowDefinitions> </Grid.RowDefinitions>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
......
...@@ -210,8 +210,15 @@ namespace VIZ.FGOUT.Module ...@@ -210,8 +210,15 @@ namespace VIZ.FGOUT.Module
// Replay更新画面 // Replay更新画面
WPFHelper.Invoke(() => WPFHelper.Invoke(() =>
{ {
try
{
var view3 = this.FindChild<NDIView>(Application.Current.MainWindow, "cam3"); var view3 = this.FindChild<NDIView>(Application.Current.MainWindow, "cam3");
view3.video.UpdateVideoFrame(dsExtend, true); view3.video.UpdateVideoFrame(dsExtend, true);
}
catch (Exception ex)
{
log.Error(ex);
}
}); });
//view.video.UpdateVideoFrame(dse, true); //view.video.UpdateVideoFrame(dse, true);
} }
......
...@@ -232,8 +232,8 @@ namespace VIZ.FGOUT.Module ...@@ -232,8 +232,8 @@ namespace VIZ.FGOUT.Module
status = ReplayStatus.Start status = ReplayStatus.Start
}; };
manager.SendJson(replayPackage);
managerAlgorithm.SendJson(replayPackage); managerAlgorithm.SendJson(replayPackage);
manager.SendJson(replayPackage);
MessageBoxEx.ShowDialog("Replay Start OK."); MessageBoxEx.ShowDialog("Replay Start OK.");
} }
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "5AF01E6CDCAAA9BAF5ACE6770F4F3A0D5B77D1414CE9039D69C9FAEE8A4891DD" #pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F7E31AF7C684FC230365F0EB5CBFB35D5A0FF9028A004C278D0DD9FC304C7CE0"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
...@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module { ...@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 924 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 926 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3; internal VIZ.FGOUT.Module.NDIView cam3;
...@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module { ...@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 971 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 973 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2; internal VIZ.FGOUT.Module.NDIView cam2;
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "5AF01E6CDCAAA9BAF5ACE6770F4F3A0D5B77D1414CE9039D69C9FAEE8A4891DD" #pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F7E31AF7C684FC230365F0EB5CBFB35D5A0FF9028A004C278D0DD9FC304C7CE0"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
...@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module { ...@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 924 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 926 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3; internal VIZ.FGOUT.Module.NDIView cam3;
...@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module { ...@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 971 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" #line 973 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2; internal VIZ.FGOUT.Module.NDIView cam2;
......
#pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "10D3B59B06037EA036639900A7AA9D066CB2339D77995FC1F9E6159EEC9031B7" #pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B9BB199B9AE46746348239A2D459CA103BC232A1E4BAE6A28DDC12BD0E16B322"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
...@@ -60,7 +60,7 @@ namespace VIZ.FGOUT.Module { ...@@ -60,7 +60,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 307 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 308 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Border Border; internal System.Windows.Controls.Border Border;
...@@ -68,7 +68,7 @@ namespace VIZ.FGOUT.Module { ...@@ -68,7 +68,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 323 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 324 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.Framework.Common.VideoControl video; internal VIZ.Framework.Common.VideoControl video;
...@@ -76,7 +76,7 @@ namespace VIZ.FGOUT.Module { ...@@ -76,7 +76,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 329 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 330 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Canvas canvas1; internal System.Windows.Controls.Canvas canvas1;
...@@ -84,7 +84,7 @@ namespace VIZ.FGOUT.Module { ...@@ -84,7 +84,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 414 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 415 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _Setting_; internal System.Windows.Controls.Button _Setting_;
...@@ -92,7 +92,7 @@ namespace VIZ.FGOUT.Module { ...@@ -92,7 +92,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 435 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 436 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _RestartBtn_; internal System.Windows.Controls.Button _RestartBtn_;
...@@ -100,7 +100,7 @@ namespace VIZ.FGOUT.Module { ...@@ -100,7 +100,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 449 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 450 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _StopBtn_; internal System.Windows.Controls.Button _StopBtn_;
...@@ -143,25 +143,25 @@ namespace VIZ.FGOUT.Module { ...@@ -143,25 +143,25 @@ namespace VIZ.FGOUT.Module {
case 2: case 2:
this.Border = ((System.Windows.Controls.Border)(target)); this.Border = ((System.Windows.Controls.Border)(target));
#line 309 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 310 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonDown); this.Border.PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonDown);
#line default #line default
#line hidden #line hidden
#line 310 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 311 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonUp); this.Border.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonUp);
#line default #line default
#line hidden #line hidden
#line 311 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 312 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.Border_MouseMove); this.Border.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.Border_MouseMove);
#line default #line default
#line hidden #line hidden
#line 312 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 313 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_OnPreviewMouseRightButtonDown); this.Border.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_OnPreviewMouseRightButtonDown);
#line default #line default
......
#pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "10D3B59B06037EA036639900A7AA9D066CB2339D77995FC1F9E6159EEC9031B7" #pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B9BB199B9AE46746348239A2D459CA103BC232A1E4BAE6A28DDC12BD0E16B322"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
...@@ -60,7 +60,7 @@ namespace VIZ.FGOUT.Module { ...@@ -60,7 +60,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 307 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 308 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Border Border; internal System.Windows.Controls.Border Border;
...@@ -68,7 +68,7 @@ namespace VIZ.FGOUT.Module { ...@@ -68,7 +68,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 323 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 324 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.Framework.Common.VideoControl video; internal VIZ.Framework.Common.VideoControl video;
...@@ -76,7 +76,7 @@ namespace VIZ.FGOUT.Module { ...@@ -76,7 +76,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 329 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 330 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Canvas canvas1; internal System.Windows.Controls.Canvas canvas1;
...@@ -84,7 +84,7 @@ namespace VIZ.FGOUT.Module { ...@@ -84,7 +84,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 414 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 415 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _Setting_; internal System.Windows.Controls.Button _Setting_;
...@@ -92,7 +92,7 @@ namespace VIZ.FGOUT.Module { ...@@ -92,7 +92,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 435 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 436 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _RestartBtn_; internal System.Windows.Controls.Button _RestartBtn_;
...@@ -100,7 +100,7 @@ namespace VIZ.FGOUT.Module { ...@@ -100,7 +100,7 @@ namespace VIZ.FGOUT.Module {
#line hidden #line hidden
#line 449 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 450 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _StopBtn_; internal System.Windows.Controls.Button _StopBtn_;
...@@ -143,25 +143,25 @@ namespace VIZ.FGOUT.Module { ...@@ -143,25 +143,25 @@ namespace VIZ.FGOUT.Module {
case 2: case 2:
this.Border = ((System.Windows.Controls.Border)(target)); this.Border = ((System.Windows.Controls.Border)(target));
#line 309 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 310 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonDown); this.Border.PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonDown);
#line default #line default
#line hidden #line hidden
#line 310 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 311 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonUp); this.Border.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonUp);
#line default #line default
#line hidden #line hidden
#line 311 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 312 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.Border_MouseMove); this.Border.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.Border_MouseMove);
#line default #line default
#line hidden #line hidden
#line 312 "..\..\..\..\..\NDIView\View\NDIView.xaml" #line 313 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_OnPreviewMouseRightButtonDown); this.Border.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_OnPreviewMouseRightButtonDown);
#line default #line default
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment