File tree Expand file tree Collapse file tree 4 files changed +53
-1
lines changed
src/WPF/GeneralUpdate.Packet Expand file tree Collapse file tree 4 files changed +53
-1
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 44using GeneralUpdate . Differential ;
55using GeneralUpdate . Packet . Domain . Enum ;
66using GeneralUpdate . Packet . MVVM ;
7- using GeneralUpdate . Packet . Servieces ;
7+ using GeneralUpdate . Packet . Servieces ;
88using GeneralUpdate . Zip . Factory ;
99using System . IO ;
1010using System . Text ;
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments