Procházet zdrojové kódy

zhao:解决冲突

tags/录制修改前
耀 před 4 roky
rodič
revize
2f8d4fea7d

binární
XHWK.WKTool/256.ico Zobrazit soubor


+ 4
- 0
XHWK.WKTool/App.cs Zobrazit soubor

@@ -72,6 +72,10 @@ namespace XHWK.WKTool
72 72
         /// </summary>
73 73
         public static string[] OutPut = new string[] { };
74 74
         public static string CameraPosition = string.Empty;
75
+        /// <summary>
76
+        /// 数据存放目录
77
+        /// </summary>
78
+        public static string DataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\XHMicroLesson\\"; 
75 79
         #region 点阵笔
76 80
         /// <summary>
77 81
         /// 点阵笔

+ 2
- 2
XHWK.WKTool/FileDirectoryWindow.xaml Zobrazit soubor

@@ -6,7 +6,7 @@
6 6
         xmlns:local="clr-namespace:XHWK.WKTool"
7 7
         mc:Ignorable="d"
8 8
         Title="FileDirectoryWindow" Height="729" Width="1030" AllowsTransparency="True" 
9
-    ShowInTaskbar="False"
9
+    ShowInTaskbar="False" MouseLeftButtonDown="Window_MouseLeftButtonDown_1" MouseLeftButtonUp="Window_MouseLeftButtonUp"
10 10
     WindowStartupLocation="CenterOwner"
11 11
     WindowStyle="None">
12 12
     <Window.Resources>
@@ -49,7 +49,7 @@
49 49
                     HorizontalAlignment="Center"
50 50
                     VerticalAlignment="Center"
51 51
                     FontSize="15"
52
-                    Text="{Binding VideoName}" />
52
+                    Text="{Binding VideoName,Mode=TwoWay}" />
53 53
                         <Button x:Name="btnModify" Background="Transparent"
54 54
                                 Cursor="Hand"
55 55
                         BorderThickness="0" Click="BtnModify_Click">

+ 153
- 18
XHWK.WKTool/FileDirectoryWindow.xaml.cs Zobrazit soubor

@@ -22,8 +22,19 @@ namespace XHWK.WKTool
22 22
         /// 视频模型
23 23
         /// </summary>
24 24
         List<Model_Video> model_VideoList =null;
25
+        /// <summary>
26
+        /// 数据列表
27
+        /// </summary>
25 28
         internal FileDirectoryData pageData = new FileDirectoryData();
26 29
         /// <summary>
30
+        /// 下标
31
+        /// </summary>
32
+        private int Subscript = 0;
33
+        /// <summary>
34
+        /// 是否是修改状态
35
+        /// </summary>
36
+        private bool IsModify = false;
37
+        /// <summary>
27 38
         /// 文件目录
28 39
         /// </summary>
29 40
         public FileDirectoryWindow()
@@ -36,6 +47,8 @@ namespace XHWK.WKTool
36 47
         /// </summary>
37 48
         public void Initialize()
38 49
         {
50
+            MouseNumber = 0;
51
+            IsModify = false;
39 52
             //加载视频列表
40 53
             LoadingVideoList();
41 54
             int i = 1;
@@ -78,7 +91,9 @@ namespace XHWK.WKTool
78 91
                 pageData.menuList.Add(new FileDirectoryModel()
79 92
                 {
80 93
                     SerialNumber = i,
81
-                    VideoName = Common.system.FileToolsCommon.GetIOFileName(videoinfo.VideoPath),
94
+                    VideoName = Common.system.FileToolsCommon.GetIOFileName(videoinfo.VideoPath).Replace(".MP4", "").Replace(".FLV", "").Replace("AVI", "").Trim(),
95
+                    Name = Common.system.FileToolsCommon.GetIOFileName(videoinfo.VideoPath).Replace(".MP4", "").Replace(".FLV", "").Replace("AVI", "").Trim(),
96
+                    FilePath = videoinfo.VideoPath.Replace(FileToolsCommon.GetIOFileName(videoinfo.VideoPath), "").Trim(),
82 97
                     VideoDuration = 0,
83 98
                     VideoSize = videoinfo.VideoSize,
84 99
                     VideoTime = videoinfo.RSTime,
@@ -86,9 +101,10 @@ namespace XHWK.WKTool
86 101
                     Path = videoinfo.VideoPath,
87 102
                     Colour = colour,
88 103
                     Visi = vis,
89
-                    Coll=cos,
90
-                    FileGuid= videoinfo.FileGuid,
91
-                }) ; ; 
104
+                    Coll = cos,
105
+                    FileGuid = videoinfo.FileGuid,
106
+                    VideoType = videoinfo.VideoType.ToString()
107
+                }); ; 
92 108
                 i++;
93 109
             }
94 110
             txbSum.Text = pageData.menuList.Count.ToString();
@@ -99,21 +115,31 @@ namespace XHWK.WKTool
99 115
         /// </summary>
100 116
         public void LoadingVideoList()
101 117
         {
118
+            try
119
+            {
120
+                model_VideoList = new List<Model_Video>();
121
+                foreach (Model_WKData Vdata in APP.WKDataList)
122
+                {
123
+                    if (Vdata.VideoList == null)
124
+                        continue;
125
+                    foreach (Model_Video videoinfo in Vdata.VideoList)
126
+                    {
127
+                        if (string.IsNullOrWhiteSpace(videoinfo.VideoPath))
128
+                        {
129
+                            continue;
130
+                        }
131
+                        if (string.IsNullOrWhiteSpace(videoinfo.VideoSize) || videoinfo.VideoSize == "0 MB")
132
+                        {
133
+                            videoinfo.VideoSize = FileToolsCommon.GetFileSizeByMB(videoinfo.VideoPath).ToString() + " MB";
134
+                        }
135
+                        model_VideoList.Add(videoinfo);
136
+                    }
137
+                }
138
+            }
139
+            catch (Exception ex)
140
+            {
102 141
 
103
-            //model_VideoList = new List<Model_Video>();
104
-            //foreach(Model_WKData Vdata in APP.WKDataList)
105
-            //{
106
-            //    if (Vdata.VideoList == null)
107
-            //        continue;
108
-            //    foreach(Model_Video videoinfo in Vdata.VideoList)
109
-            //    {
110
-            //        if (string.IsNullOrWhiteSpace(videoinfo.VideoSize)|| videoinfo.VideoSize=="0 MB")
111
-            //        {
112
-            //            videoinfo.VideoSize = FileToolsCommon.GetFileSizeByMB(videoinfo.VideoPath).ToString() + " MB";
113
-            //        }
114
-            //        model_VideoList.Add(videoinfo);
115
-            //    }
116
-            //}
142
+            }
117 143
         }
118 144
         /// <summary>
119 145
         /// 关闭
@@ -140,6 +166,7 @@ namespace XHWK.WKTool
140 166
         /// <param name="e"></param>
141 167
         private void BtnUpload_Click(object sender, RoutedEventArgs e) 
142 168
         {
169
+            pageData.menuList[Subscript].IsEnabled = false;
143 170
             List<Button> buttons = FindChilds<Button>(listView1, "btnUpload");
144 171
             for (int i = 0; i < buttons.Count; i++)
145 172
             {
@@ -172,6 +199,7 @@ namespace XHWK.WKTool
172 199
         /// <param name="e"></param>
173 200
         private void BtnDelete_Click(object sender, RoutedEventArgs e)
174 201
         {
202
+            pageData.menuList[Subscript].IsEnabled = false;
175 203
             List<Button> buttons = FindChilds<Button>(listView1, "btnDelete");
176 204
             for (int i = 0; i < buttons.Count; i++)
177 205
             {
@@ -208,6 +236,7 @@ namespace XHWK.WKTool
208 236
         /// <param name="e"></param>
209 237
         private void BtnPlay_Click(object sender, RoutedEventArgs e)
210 238
         {
239
+            pageData.menuList[Subscript].IsEnabled = false;
211 240
             List<Button> buttons = FindChilds<Button>(listView1, "btnPlay");
212 241
             for (int i = 0; i < buttons.Count; i++)
213 242
             {
@@ -283,15 +312,109 @@ namespace XHWK.WKTool
283 312
         /// <param name="e"></param>
284 313
         private void BtnModify_Click(object sender, RoutedEventArgs e)
285 314
         {
315
+            if(IsModify)
316
+            {
317
+                pageData.menuList[Subscript].IsEnabled = false;
318
+            }
319
+
286 320
             List<Button> buttons = FindChilds<Button>(listView1, "btnModify");
287 321
             for (int i = 0; i < buttons.Count; i++)
288 322
             {
289 323
                 if (buttons[i] == sender)
290 324
                 {
291 325
                     pageData.menuList[i].IsEnabled = true;
326
+                    Subscript = i;
327
+                    IsModify = true;
292 328
                 }
293 329
             }
294 330
         }
331
+        int MouseNumber = 0;
332
+        /// <summary>
333
+        /// 鼠标按下
334
+        /// </summary>
335
+        /// <param name="sender"></param>
336
+        /// <param name="e"></param>
337
+        private void Window_MouseLeftButtonDown_1(object sender, MouseButtonEventArgs e)
338
+        {
339
+            //if(IsModify)
340
+            //{
341
+            //    if(MouseNumber>0&& pageData.menuList.Count> Subscript)
342
+            //    {
343
+            //        pageData.menuList[Subscript].IsEnabled = false;
344
+            //        try
345
+            //        {
346
+            //            if(!pageData.menuList[Subscript].Name.Equals(pageData.menuList[Subscript].VideoName))
347
+            //            {
348
+
349
+            //                string tempPath = pageData.menuList[Subscript].VideoName + pageData.menuList[Subscript].VideoType;
350
+            //                tempPath = pageData.menuList[Subscript].Path.Replace(tempPath, "").Trim();
351
+            //                tempPath = tempPath + pageData.menuList[Subscript].Name;
352
+            //                FileToolsCommon.MoveDirectory(pageData.menuList[Subscript].Path, tempPath,out string Message);
353
+            //            }
354
+            //        }
355
+            //        catch (Exception ex)
356
+            //        {
357
+            //            MessageBox.Show("无法修改视频名称!" + ex.Message);
358
+            //            return;
359
+            //        }
360
+            //    }
361
+            //    MouseNumber++;
362
+            //}
363
+        }
364
+
365
+        private void Window_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
366
+        {
367
+            //if (IsModify)
368
+            //{
369
+            //    if (MouseNumber > 2 && pageData.menuList.Count > Subscript)
370
+            //    {
371
+            //        pageData.menuList[Subscript].IsEnabled = false;
372
+            //        try
373
+            //        {
374
+            //            if (!pageData.menuList[Subscript].Name.Equals(pageData.menuList[Subscript].VideoName))
375
+            //            {
376
+            //                MouseNumber = 0;
377
+            //                string tempPath = pageData.menuList[Subscript].FilePath + pageData.menuList[Subscript].VideoName+"."+ pageData.menuList[Subscript].VideoType;
378
+            //                if(FileToolsCommon.IsExistFile(tempPath))
379
+            //                {
380
+            //                    MessageBox.Show("文件名已存在!");
381
+            //                    return;
382
+            //                }
383
+            //                foreach (Model_WKData wKData in APP.WKDataList)
384
+            //                {
385
+            //                    if (wKData.VideoList == null)
386
+            //                        continue;
387
+            //                    if (wKData.VideoList.Exists(x => x.FileGuid == pageData.menuList[Subscript].FileGuid))
388
+            //                    {
389
+            //                        try
390
+            //                        {
391
+            //                            //FileToolsCommon.DeleteFile(wKData.VideoList.Find(x => x.FileGuid == pageData.menuList[Subscript].FileGuid).VideoPath);
392
+            //                            //FileToolsCommon.DeleteFile(wKData.VideoList.Find(x => x.FileGuid == pageData.menuList[Subscript].FileGuid).ThumbnailPath);
393
+            //                            //wKData.VideoList.Remove(wKData.VideoList.Find(x => x.FileGuid == pageData.menuList[Subscript].FileGuid));
394
+            //                            //Initialize();
395
+            //                            //return;
396
+            //                        }
397
+            //                        catch (Exception ex)
398
+            //                        {
399
+            //                            MessageBox.Show("无法删除视频!" + ex.Message);
400
+            //                            return;
401
+            //                        }
402
+            //                    }
403
+            //                }
404
+
405
+
406
+            //                FileToolsCommon.Copy(pageData.menuList[Subscript].Path, tempPath); 
407
+            //            }
408
+            //        }
409
+            //        catch (Exception ex)
410
+            //        {
411
+            //            MessageBox.Show("无法修改视频名称!" + ex.Message);
412
+            //            return;
413
+            //        }
414
+            //    }
415
+            //    MouseNumber++;
416
+            //}
417
+        }
295 418
     }
296 419
     public class FileDirectoryData : NotifyModel
297 420
     {
@@ -427,5 +550,17 @@ namespace XHWK.WKTool
427 550
         /// 唯一编号
428 551
         /// </summary>
429 552
         public string FileGuid { get; set; } 
553
+        /// <summary>
554
+        /// 视频类型
555
+        /// </summary>
556
+        public string VideoType { get; set; }
557
+        /// <summary>
558
+        /// 初始名称
559
+        /// </summary>
560
+        public string Name { get; set; }
561
+        /// <summary>
562
+        /// 文件路径
563
+        /// </summary>
564
+        public string FilePath { get; set; }
430 565
     }
431 566
 }

binární
XHWK.WKTool/Images/256.ico Zobrazit soubor


+ 7
- 0
XHWK.WKTool/LoginWindow.xaml.cs Zobrazit soubor

@@ -1,6 +1,7 @@
1 1
 using Common.system;
2 2
 using System;
3 3
 using System.Configuration;
4
+using System.Text;
4 5
 using System.Windows;
5 6
 using XHWK.WKTool.DAL;
6 7
 
@@ -73,6 +74,12 @@ namespace XHWK.WKTool
73 74
             int code = @interface.Login(accountNumber, password);
74 75
             if(code==0)
75 76
             {
77
+                FileToolsCommon.CreateDirectory(APP.DataPath);
78
+                string applicationData = APP.DataPath + "accountNumber.txt";
79
+                string accountNumbers = DateTime.Now.ToLongDateString().ToString();//当前时间 
80
+                System.IO.File.WriteAllText(applicationData, accountNumbers, Encoding.Default);//存放签名验证日期
81
+
82
+
76 83
                 UpdateSettingString("userName", txbAccountNumber.Text);
77 84
                 APP.IsLoginType = true;
78 85
                 txbAccountNumber.Text = string.Empty;

+ 0
- 22
XHWK.WKTool/UCCamera.xaml Zobrazit soubor

@@ -1,22 +0,0 @@
1
-<Window x:Class="XHWK.WKTool.UCCamera"
2
-      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
-      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
-      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
5
-      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
6
-      xmlns:local="clr-namespace:XHWK.WKTool"
7
-        xmlns:wfi ="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
8
-xmlns:aforge ="clr-namespace:AForge.Controls;assembly=AForge.Controls"
9
-      mc:Ignorable="d" 
10
-      d:DesignHeight="450" d:DesignWidth="800"
11
-      Title="UCCamera">
12
-
13
-    <Grid>
14
-        <wfi:WindowsFormsHost Grid.Row="0" Grid.Column="0" Height="200" Width="300">
15
-            <aforge:VideoSourcePlayer x:Name="player" Height="200" Width="300"/>
16
-        </wfi:WindowsFormsHost>
17
-        <StackPanel Orientation="Horizontal" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2">
18
-            <Button  Name="btnOpenCamera" Click="btnOpenCamera_Click">打开摄像头</Button>
19
-            <Button x:Name="btnDown" Click="btnDown_Click" Content="关闭摄像头"/>
20
-        </StackPanel>
21
-    </Grid>
22
-</Window>

+ 0
- 33
XHWK.WKTool/UCCamera.xaml.cs Zobrazit soubor

@@ -1,33 +0,0 @@
1
-using Common.system;
2
-
3
-using System.Windows;
4
-
5
-namespace XHWK.WKTool
6
-{
7
-    /// <summary>
8
-    /// UCCamera.xaml 的交互逻辑
9
-    /// </summary>
10
-    public partial class UCCamera : Window
11
-    {
12
-        public UCCamera()
13
-        {
14
-            InitializeComponent();
15
-        }
16
-
17
-        private void btnOpenCamera_Click(object sender, RoutedEventArgs e)
18
-        {
19
-            CameraHelper.IsDisplay = true;
20
-            CameraHelper.SourcePlayer = player;
21
-            CameraHelper.UpdateCameraDevices();
22
-            if (CameraHelper.CameraDevices.Count > 0)
23
-            {
24
-                CameraHelper.SetCameraDevice(0);
25
-            }
26
-        }
27
-
28
-        private void btnDown_Click(object sender, RoutedEventArgs e)
29
-        {
30
-            CameraHelper.CloseDevice();
31
-        }
32
-    }
33
-}

+ 0
- 35
XHWK.WKTool/VideoPlaybackWindow.xaml Zobrazit soubor

@@ -1,35 +0,0 @@
1
-<Window x:Class="XHWK.WKTool.VideoPlaybackWindow"
2
-        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
-        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
-        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5
-        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6
-        
7
-        mc:Ignorable="d"
8
-        Title="VideoPlaybackWindow" Height="693" Width="1039" AllowsTransparency="True" 
9
-    ShowInTaskbar="False"
10
-    WindowStartupLocation="CenterOwner"
11
-    WindowStyle="None">
12
-    <Grid Background="#121212">
13
-        <Grid.RowDefinitions>
14
-            <RowDefinition Height="37"/>
15
-            <RowDefinition Height="*"/>
16
-            <RowDefinition Height="60"/>
17
-        </Grid.RowDefinitions>
18
-        <Grid Grid.Row="0" Margin="5,5,5,0">
19
-
20
-            <TextBlock Text="预览" HorizontalAlignment="Left" Foreground="#FFFFFF" FontSize="16"/>
21
-            <TextBlock x:Name="txbVideoName" Text="微课1.mp4" HorizontalAlignment="Center" Foreground="#FFFFFF" FontSize="16"/>
22
-        </Grid>
23
-        <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
24
-            <Button Cursor="Hand" x:Name="btnShrink" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"  Margin="8,0,8,0">
25
-                <Image Source="./Images/microLessonSystem_19.png"/>
26
-            </Button>
27
-            <Button Cursor="Hand" x:Name="btnEnlarge" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="8,0,8,0">
28
-                        <Image Source="./Images/microLessonSystem_8.png"/>
29
-                    </Button>
30
-            <Button Cursor="Hand" x:Name="btnDown" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"  >
31
-                <Image Source="./Images/microLessonSystem_10.png"/>
32
-            </Button>
33
-        </StackPanel>
34
-    </Grid>
35
-</Window>

+ 0
- 27
XHWK.WKTool/VideoPlaybackWindow.xaml.cs Zobrazit soubor

@@ -1,27 +0,0 @@
1
-using System;
2
-using System.Collections.Generic;
3
-using System.Linq;
4
-using System.Text;
5
-using System.Threading.Tasks;
6
-using System.Windows;
7
-using System.Windows.Controls;
8
-using System.Windows.Data;
9
-using System.Windows.Documents;
10
-using System.Windows.Input;
11
-using System.Windows.Media;
12
-using System.Windows.Media.Imaging;
13
-using System.Windows.Shapes;
14
-
15
-namespace XHWK.WKTool
16
-{
17
-    /// <summary>
18
-    /// VideoPlaybackWindow.xaml 的交互逻辑
19
-    /// </summary>
20
-    public partial class VideoPlaybackWindow : Window
21
-    {
22
-        public VideoPlaybackWindow()
23
-        {
24
-            InitializeComponent();
25
-        }
26
-    }
27
-}

+ 1
- 1
XHWK.WKTool/XHMicroLessonSystemWindow.xaml Zobrazit soubor

@@ -7,7 +7,7 @@
7 7
         xmlns:aforge ="clr-namespace:AForge.Controls;assembly=AForge.Controls"
8 8
         xmlns:local="clr-namespace:XHWK.WKTool"
9 9
         mc:Ignorable="d"
10
-        Title="XHMicroLessonSystemWindow" Height="1040.8" Width="875" WindowStartupLocation="CenterScreen"
10
+        Title="星火微课系统" Height="1040.8" Width="875" WindowStartupLocation="CenterScreen"
11 11
     WindowStyle="None"    AllowsTransparency="True"  Background="#EFF1F8" ShowInTaskbar="True"
12 12
    >
13 13
     

+ 2
- 1
XHWK.WKTool/XHMicroLessonSystemWindow.xaml.cs Zobrazit soubor

@@ -1310,6 +1310,7 @@ namespace XHWK.WKTool
1310 1310
                         }
1311 1311
                         FileToolsCommon.DeleteFile(ThumbnailPathName);
1312 1312
                         VideoInfo.RSTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
1313
+                        Thread.Sleep(500);
1313 1314
                         //VideoInfo.VideoSize = FileToolsCommon.GetFileSizeByMB(VideoSavePathName).ToString() + " MB";
1314 1315
                         VideoInfo.VideoPath = VideoSavePathName;
1315 1316
                         VideoInfo.ThumbnailPath = ThumbnailPathName;
@@ -1448,7 +1449,7 @@ namespace XHWK.WKTool
1448 1449
             {
1449 1450
                 APP.W_PrintWindow.Initialize("");
1450 1451
             }
1451
-            APP.W_PrintWindow.Show();
1452
+            APP.W_PrintWindow.ShowDialog();
1452 1453
             //int pr = 1;
1453 1454
             //string msg = string.Empty;
1454 1455
             //string outPut = string.Empty;

+ 6
- 14
XHWK.WKTool/XHWK.WKTool.csproj Zobrazit soubor

@@ -34,6 +34,9 @@
34 34
     <ErrorReport>prompt</ErrorReport>
35 35
     <WarningLevel>4</WarningLevel>
36 36
   </PropertyGroup>
37
+  <PropertyGroup>
38
+    <ApplicationIcon>256.ico</ApplicationIcon>
39
+  </PropertyGroup>
37 40
   <ItemGroup>
38 41
     <Reference Include="AForge, Version=2.2.5.0, Culture=neutral, PublicKeyToken=c1db6ff4eaa06aeb, processorArchitecture=MSIL">
39 42
       <HintPath>..\packages\AForge.2.2.5\lib\AForge.dll</HintPath>
@@ -146,12 +149,6 @@
146 149
     <Compile Include="ScreenRecordingToolbarWindow.xaml.cs">
147 150
       <DependentUpon>ScreenRecordingToolbarWindow.xaml</DependentUpon>
148 151
     </Compile>
149
-    <Compile Include="UCCamera.xaml.cs">
150
-      <DependentUpon>UCCamera.xaml</DependentUpon>
151
-    </Compile>
152
-    <Compile Include="VideoPlaybackWindow.xaml.cs">
153
-      <DependentUpon>VideoPlaybackWindow.xaml</DependentUpon>
154
-    </Compile>
155 152
     <Compile Include="XHMicroLessonSystemWindow.xaml.cs">
156 153
       <DependentUpon>XHMicroLessonSystemWindow.xaml</DependentUpon>
157 154
     </Compile>
@@ -184,10 +181,6 @@
184 181
       <Generator>MSBuild:Compile</Generator>
185 182
       <SubType>Designer</SubType>
186 183
     </Page>
187
-    <Page Include="VideoPlaybackWindow.xaml">
188
-      <SubType>Designer</SubType>
189
-      <Generator>MSBuild:Compile</Generator>
190
-    </Page>
191 184
     <Page Include="XHMicroLessonSystemWindow.xaml">
192 185
       <Generator>MSBuild:Compile</Generator>
193 186
       <SubType>Designer</SubType>
@@ -204,10 +197,6 @@
204 197
       <SubType>Designer</SubType>
205 198
       <Generator>MSBuild:Compile</Generator>
206 199
     </Page>
207
-    <Page Include="UCCamera.xaml">
208
-      <SubType>Designer</SubType>
209
-      <Generator>MSBuild:Compile</Generator>
210
-    </Page>
211 200
   </ItemGroup>
212 201
   <ItemGroup>
213 202
     <Compile Include="Properties\AssemblyInfo.cs">
@@ -1505,5 +1494,8 @@
1505 1494
     <Resource Include="Images\fileDirectory7.png" />
1506 1495
     <Resource Include="Images\fileDirectory8.png" />
1507 1496
   </ItemGroup>
1497
+  <ItemGroup>
1498
+    <Resource Include="256.ico" />
1499
+  </ItemGroup>
1508 1500
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1509 1501
 </Project>

Načítá se…
Zrušit
Uložit