Skip to content

Commit 142ae76

Browse files
committed
Installation screen settings
1 parent c347176 commit 142ae76

File tree

4 files changed

+53
-1
lines changed

4 files changed

+53
-1
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace GeneralUpdate.Packet.ViewModels
8+
{
9+
public class InstallPackageViewModel
10+
{
11+
}
12+
}

src/WPF/GeneralUpdate.Packet/ViewModels/PacketViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using GeneralUpdate.Differential;
55
using GeneralUpdate.Packet.Domain.Enum;
66
using GeneralUpdate.Packet.MVVM;
7-
using GeneralUpdate.Packet.Servieces;
7+
using GeneralUpdate.Packet.Servieces;
88
using GeneralUpdate.Zip.Factory;
99
using System.IO;
1010
using System.Text;
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<UserControl x:Class="GeneralUpdate.Packet.Views.InstallPackageView"
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:GeneralUpdate.Packet.Views"
7+
mc:Ignorable="d"
8+
d:DesignHeight="450" d:DesignWidth="800">
9+
<Grid>
10+
11+
</Grid>
12+
</UserControl>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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.Navigation;
14+
using System.Windows.Shapes;
15+
16+
namespace GeneralUpdate.Packet.Views
17+
{
18+
/// <summary>
19+
/// InstallPackageView.xaml 的交互逻辑
20+
/// </summary>
21+
public partial class InstallPackageView : UserControl
22+
{
23+
public InstallPackageView()
24+
{
25+
InitializeComponent();
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)