Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit 1377003

Browse files
committed
调整文件
1 parent 428a5f5 commit 1377003

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+273
-206
lines changed

App.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "pch.h"
22

33
#include "App.h"
4-
#include "MainPage.h"
4+
#include "Pages/MainPage.h"
55

66

77
using namespace winrt;

Assets/LargeTile.scale-100.png

-104 KB

Assets/LargeTile.scale-125.png

-143 KB

Assets/LargeTile.scale-150.png

-186 KB

Assets/LargeTile.scale-200.png

-287 KB

Assets/LargeTile.scale-400.png

-901 KB

Package.appxmanifest

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
33
<Identity
44
Name="216498b6-651f-448d-99f4-4633881a4315"
5-
Publisher="CN=kulujun"
6-
Version="1.0.0.0" />
5+
Publisher="CN=KitUIN"
6+
Version="0.1.0.0" />
77
<mp:PhoneIdentity PhoneProductId="216498b6-651f-448d-99f4-4633881a4315" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
88
<Properties>
99
<DisplayName>bikabika</DisplayName>
10-
<PublisherDisplayName>kulujun</PublisherDisplayName>
10+
<PublisherDisplayName>KitUIN</PublisherDisplayName>
1111
<Logo>Assets\StoreLogo.png</Logo>
1212
</Properties>
1313
<Dependencies>
File renamed without changes.

AccountPage.h Pages/AccountPage.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

ClassificationPage.h Pages/ClassificationPage.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

33
#include "ClassificationPage.g.h"
4-
#include "ClassBlockViewModel.h"
4+
#include "Utils/Blocks/ClassBlockViewModel.h"
55

66
namespace winrt::bikabika::implementation
77
{

ClassificationPage.idl Pages/ClassificationPage.idl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import "ClassBlockViewModel.idl";
2-
import "BikaHttp.idl";
1+
import "Utils/Blocks/ClassBlockViewModel.idl";
2+
import "Utils/API/BikaHttp.idl";
33
namespace bikabika
44
{
55
[default_interface]

ClassificationPage.xaml Pages/ClassificationPage.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Grid>
1313
<StackPanel>
1414
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
15-
<Image Source="Assets//Picacgs//register_name.png" Width="36" Height="36" Margin="0,0,0,0"/>
15+
<Image Source="ms-appx:///Assets//Picacgs//register_name.png" Width="36" Height="36" Margin="0,0,0,0"/>
1616
<TextBlock Text="热门分类" FontSize="25" FontWeight="Bold" Foreground="{StaticResource SystemAccentColorDark3}"/>
1717
</StackPanel>
1818
<GridView x:Name="GridV" SelectionMode="None" IsItemClickEnabled="True" ItemClick="GridV_ItemClick"
File renamed without changes.

ComicsPage.h Pages/ComicsPage.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#pragma once
22

33
#include "ComicsPage.g.h"
4-
#include "ComicBlock.h"
5-
#include "PageNumBox.h"
4+
#include "Utils/Blocks/ComicBlock.h"
5+
#include "Utils/Blocks/PageNumBox.h"
66
namespace winrt::bikabika::implementation
77
{
88
struct ComicsPage : ComicsPageT<ComicsPage>

ComicsPage.idl Pages/ComicsPage.idl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import "ComicBlock.idl";
2-
import "PageNumBox.idl";
1+
import "Utils/Blocks/ComicBlock.idl";
2+
import "Utils/Blocks/PageNumBox.idl";
33
namespace bikabika
44
{
55

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

HomePage.cpp Pages/HomePage.cpp

File renamed without changes.

HomePage.h Pages/HomePage.h

File renamed without changes.

HomePage.idl Pages/HomePage.idl

File renamed without changes.

HomePage.xaml Pages/HomePage.xaml

File renamed without changes.

InfoPage.cpp Pages/InfoPage.cpp

File renamed without changes.

InfoPage.h Pages/InfoPage.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#pragma once
22

33
#include "InfoPage.g.h"
4-
#include "BikaHttp.h"
4+
#include "Utils/API/BikaHttp.h"
55
#include "FileCheckTool.h"
6-
#include "TagBlock.h"
7-
#include "CreaterBlock.h"
8-
#include "EpisodeBlock.h"
6+
#include "Utils/Blocks/TagBlock.h"
7+
#include "Utils/Blocks/CreaterBlock.h"
8+
#include "Utils/Blocks/EpisodeBlock.h"
99
namespace winrt::bikabika::implementation
1010
{
1111
struct InfoPage : InfoPageT<InfoPage>

InfoPage.idl Pages/InfoPage.idl

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import "TagBlock.idl";
2-
import "CreaterBlock.idl";
3-
import "EpisodeBlock.idl";
1+
import "Utils/Blocks/CreaterBlock.idl";
2+
import "Utils/Blocks/EpisodeBlock.idl";
43
namespace bikabika
54
{
65
[default_interface]

InfoPage.xaml Pages/InfoPage.xaml

File renamed without changes.

Login.cpp Pages/Login.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,13 @@ namespace winrt::bikabika::implementation
208208
{
209209
Progressing().IsActive(true);
210210
bool f{ co_await m_fileCheckTool.CheckFileAccount() };
211+
Progressing().IsActive(false);
211212
if (f) {
212213
Windows::Data::Json::JsonObject account{ co_await m_fileCheckTool.GetAccount() };
213214
if (account.GetNamedBoolean(L"isChecked")) {
214215
hstring personInfo = co_await m_bikaHttp.PersonInfo();
215-
Progressing().IsActive(false);
216+
216217
if (personInfo[1] == 'T') {
217-
Progressing().IsActive(false);
218218
auto show{ PicErrorDialog().ShowAsync() };
219219
}
220220
else if (personInfo[1] == 'E') {

Login.h Pages/Login.h

File renamed without changes.

Login.idl Pages/Login.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "BikaHttp.idl";
1+
import "Utils/API/BikaHttp.idl";
22
namespace bikabika
33
{
44
runtimeclass Login : Windows.UI.Xaml.Controls.Page

Login.xaml Pages/Login.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
Background="{StaticResource SystemAccentColorLight2}">
2828
<ContentDialog.TitleTemplate>
2929
<DataTemplate>
30-
<Image x:Name="ErrorPic" x:Uid="ErrorPic" Source="Assets//Picacgs//icon_unknown_error.png" Width="270" Height="270" HorizontalAlignment="Center"/>
30+
<Image x:Name="ErrorPic" x:Uid="ErrorPic" Source="ms-appx:///Assets//Picacgs//icon_unknown_error.png" Width="270" Height="270" HorizontalAlignment="Center"/>
3131
</DataTemplate>
3232
</ContentDialog.TitleTemplate>
3333
<StackPanel HorizontalAlignment="Center">

MainPage.cpp Pages/MainPage.cpp

File renamed without changes.

MainPage.h Pages/MainPage.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#pragma once
22

33
#include "MainPage.g.h"
4-
#include "UserViewModel.h"
5-
#include "KeywordsBox.h"
4+
#include "Utils/Blocks/UserViewModel.h"
5+
#include "Utils/Blocks/KeywordsBox.h"
66
namespace muxc
77
{
88
using namespace winrt::Microsoft::UI::Xaml::Controls;

MainPage.idl Pages/MainPage.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "UserViewModel.idl";
1+
import "Utils/Blocks/UserViewModel.idl";
22
namespace bikabika
33
{
44

MainPage.xaml Pages/MainPage.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<ColumnDefinition x:Name="RightPaddingColumn" Width="0"/>
7979
</Grid.ColumnDefinitions>
8080
<StackPanel Orientation="Horizontal" Grid.Column="1" Grid.ColumnSpan="1">
81-
<Image Source="Assets//Picacgs//picacomic_2.png" Width="36" Height="36" Margin="0,0,0,0"/>
81+
<Image Source="ms-appx:///Assets//Picacgs//picacomic_2.png" Width="36" Height="36" Margin="0,0,0,0"/>
8282
<TextBlock x:Uid="APPTitle" Text="嗶咔" FontSize="25" FontWeight="Bold" Margin="20,4,0,0"/>
8383

8484
</StackPanel>

PicPage.cpp Pages/PicPage.cpp

File renamed without changes.

PicPage.h Pages/PicPage.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#pragma once
2-
#include "BikaHttp.h"
2+
#include "Utils/API/BikaHttp.h"
33
#include "PicPage.g.h"
4-
#include "PicturesBlock.h"
5-
#include "EpisodeBlock.h"
4+
#include "Utils/Blocks/PicturesBlock.h"
5+
#include "Utils/Blocks/EpisodeBlock.h"
66
namespace winrt::bikabika::implementation
77
{
88
struct PicPage : PicPageT<PicPage>

PicPage.idl Pages/PicPage.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "PicturesBlock.idl";
1+
import "Utils/Blocks/PicturesBlock.idl";
22
namespace bikabika
33
{
44
[default_interface]

PicPage.xaml Pages/PicPage.xaml

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

README.md

+55-4
File renamed without changes.

BikaHttp.h Utils/API/BikaHttp.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

ClassBlockViewModel.idl Utils/Blocks/ClassBlockViewModel.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "ClassBlock.idl";
1+
import "Utils/Blocks/ClassBlock.idl";
22
namespace bikabika
33
{
44
runtimeclass ClassBlockViewModel
File renamed without changes.
File renamed without changes.

ComicBlock.idl Utils/Blocks/ComicBlock.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "TagBlock.idl";
1+
import "Utils/Blocks/TagBlock.idl";
22
namespace bikabika
33
{
44
runtimeclass ComicBlock : Windows.UI.Xaml.Data.INotifyPropertyChanged
File renamed without changes.
File renamed without changes.

CreaterBlock.idl Utils/Blocks/CreaterBlock.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "TagBlock.idl";
1+
import "Utils/Blocks/TagBlock.idl";
22
namespace bikabika
33
{
44
runtimeclass CreaterBlock : Windows.UI.Xaml.Data.INotifyPropertyChanged
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

InfoBlock.idl Utils/Blocks/InfoBlock.idl

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import "CreaterBlock.idl";
2-
import "TagBlock.idl";
1+
import "Utils/Blocks/CreaterBlock.idl";
32
namespace bikabika
43
{
54
runtimeclass InfoBlock : Windows.UI.Xaml.Data.INotifyPropertyChanged
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

TagBlock.h Utils/Blocks/TagBlock.h

File renamed without changes.
File renamed without changes.

User.cpp Utils/Blocks/User.cpp

File renamed without changes.

User.h Utils/Blocks/User.h

File renamed without changes.

User.idl Utils/Blocks/User.idl

File renamed without changes.
File renamed without changes.
File renamed without changes.

UserViewModel.idl Utils/Blocks/UserViewModel.idl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "User.idl";
1+
import "Utils/Blocks/User.idl";
22

33
namespace bikabika
44
{

0 commit comments

Comments
 (0)