Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mrrekcuf committed Jun 2, 2018
1 parent a2f4e0f commit 642c0a3
Show file tree
Hide file tree
Showing 100 changed files with 2,943 additions and 0 deletions.
Binary file added BulletTimeONVIF.v11.suo
Binary file not shown.
20 changes: 20 additions & 0 deletions BulletTimeONVIF/App.config
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<system.serviceModel>
<bindings>
<customBinding>
<binding name="DeviceBinding">
<textMessageEncoding messageVersion="Soap12" />
<httpTransport />
</binding>
<binding name="Media2Binding">
<textMessageEncoding messageVersion="Soap12" />
<httpTransport />
</binding>
</customBinding>
</bindings>
</system.serviceModel>
</configuration>
9 changes: 9 additions & 0 deletions BulletTimeONVIF/App.xaml
@@ -0,0 +1,9 @@
<Application x:Class="WpfApplication1.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication1"
StartupUri="MainWindow.xaml">
<Application.Resources>

</Application.Resources>
</Application>
18 changes: 18 additions & 0 deletions BulletTimeONVIF/App.xaml.cs
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;

namespace WpfApplication1
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{

}
}
676 changes: 676 additions & 0 deletions BulletTimeONVIF/BulletTimeONVIF.csproj

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions BulletTimeONVIF/BulletTimeONVIF.csproj.user
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishUrlHistory>publish\</PublishUrlHistory>
<InstallUrlHistory />
<SupportUrlHistory />
<UpdateUrlHistory />
<BootstrapperUrlHistory />
<ErrorReportUrlHistory />
<FallbackCulture>en-US</FallbackCulture>
<VerifyUploadedFiles>false</VerifyUploadedFiles>
</PropertyGroup>
</Project>
23 changes: 23 additions & 0 deletions BulletTimeONVIF/MainWindow.xaml
@@ -0,0 +1,23 @@
<Window x:Class="BulletTimeOnvifVideo.MainWindow"
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:BulletTimeOnvifVideo"
xmlns:vlc="clr-namespace:Vlc.DotNet.Wpf;assembly=Vlc.DotNet.Wpf"
mc:Ignorable="d"
Title="Bullet Time ONVIF" Height="671.376" Width="1822.95">
<Grid x:Name="GridMain" Margin="0,0,2,0">

<ListBox x:Name="listBox" HorizontalAlignment="Left" Height="189" Margin="18,56,0,0" VerticalAlignment="Top" Width="100" />
<TextBox x:Name="address" HorizontalAlignment="Left" Height="27" Margin="134,10,0,0" TextWrapping="Wrap" Text="camera's ip address" VerticalAlignment="Top" Width="179" Foreground="DarkGray" RenderTransformOrigin="0.307,0.593"/>
<TextBox x:Name="user" HorizontalAlignment="Left" Height="27" Margin="318,10,0,0" TextWrapping="Wrap" Text="user id" VerticalAlignment="Top" Width="150" Foreground="DarkGray"/>
<PasswordBox x:Name="password" HorizontalAlignment="Left" Height="27" Margin="473,10,0,0" VerticalAlignment="Top" Width="150" Foreground="DarkGray" Password="password"/>
<Button x:Name="button" Content="Connect..." HorizontalAlignment="Left" Margin="18,10,0,0" VerticalAlignment="Top" Width="100" RenderTransformOrigin="0.405,-0.212" Height="30" />
<Button x:Name="buttonAdd" Content="Add Camera" HorizontalAlignment="Left" Margin="18,267,0,0" VerticalAlignment="Top" Width="100" RenderTransformOrigin="0.405,-0.212" Height="27" IsEnabled="False" />
<Button x:Name="buttonAction" Content="Action !!!" HorizontalAlignment="Left" Margin="18,411,0,0" VerticalAlignment="Top" Width="100" RenderTransformOrigin="0.405,-0.212" Height="30" IsEnabled="False" />
<Button x:Name="buttonSave" Content="Save Setting" HorizontalAlignment="Left" Margin="18,308,0,0" VerticalAlignment="Top" Width="100" RenderTransformOrigin="0.405,-0.212" Height="27" />
<Button x:Name="buttonLoad" Content="Load Setting" HorizontalAlignment="Left" Margin="18,340,0,0" VerticalAlignment="Top" Width="100" RenderTransformOrigin="0.405,-0.212" Height="27" />

</Grid>
</Window>

0 comments on commit 642c0a3

Please sign in to comment.