Commit 3151e23d authored by shRabbit's avatar shRabbit
Browse files

恢复到字体搜索

parent 797370de
Loading
Loading
Loading
Loading
+5 −13
Original line number Diff line number Diff line
@@ -26,16 +26,8 @@ namespace CountDownList.Class
    /// </summary>
    public class ListCore
    {
        public StackPanel 
            DoingPanel, 
            WcPanel, 
            CountPanel;

        public Expander 
            DoingE, 
            WcE, 
            CountE;

        public VirtualizingStackPanel DoingPanel , WcPanel, CountPanel;
        public Expander DoingE, WcE, CountE;
        public FrameworkElement RootWindow;

        NotifyCore notifyCore = new();
@@ -43,9 +35,9 @@ namespace CountDownList.Class
        public bool IsOpen = true;
        public ListCore
        (
            StackPanel doingPanel,
            StackPanel wcPanel,
            StackPanel countPanel,
            VirtualizingStackPanel doingPanel,
            VirtualizingStackPanel wcPanel,
            VirtualizingStackPanel countPanel,
            Expander doingE,
            Expander wcE,
            Expander countE,
+0 −1082

File deleted.

Preview size limit exceeded, changes collapsed.

+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
    <Nullable>enable</Nullable>
    <ImplicitUsings>enable</ImplicitUsings>
    <UseWPF>true</UseWPF>
	<!--<PublishAot>true</PublishAot>-->
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <ApplicationIcon>CountDownList.ico</ApplicationIcon>
    <SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
+9 −9
Original line number Diff line number Diff line
@@ -136,23 +136,23 @@
                    </local:MyScrollViewer.OpacityMask>
                    <StackPanel>
                        <Expander RenderOptions.ClearTypeHint="Enabled" x:Name="DoingE" Background="#00F7F7F7" BorderBrush="{x:Null}" IsExpanded="True" Header="进行中(5)" Margin="4,0,4,0" Foreground="#FFF7F7F7">
                            <StackPanel x:Name="doingList">
                            <VirtualizingStackPanel x:Name="doingList">
                                <!-- 进行中的倒计时项 -->
                            </StackPanel>
                            </VirtualizingStackPanel>
                        </Expander>
                        <Expander RenderOptions.ClearTypeHint="Enabled" x:Name="countE" Background="#00000000" BorderBrush="{x:Null}" Header="正计时(5)" Margin="4,0,4,0" Foreground="#FFF7F7F7" IsExpanded="True">
                            <StackPanel x:Name="count">
                            <VirtualizingStackPanel x:Name="count">
                                <!-- 正计时项 -->
                            </StackPanel>
                            </VirtualizingStackPanel>
                        </Expander>
                        <Expander RenderOptions.ClearTypeHint="Enabled" x:Name="wcE" Background="#00000000" BorderBrush="{x:Null}" Header="已完成(5)" Margin="4,0,4,0" Foreground="#FFF7F7F7">
                            <StackPanel x:Name="wancheng">
                            <VirtualizingStackPanel x:Name="wancheng">
                                <!-- 已完成的倒计时项 -->
                            </StackPanel>
                            </VirtualizingStackPanel>
                        </Expander>

                        <TextBlock x:Name="Version" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#7FF7F7F7" Margin="0,48,0,0">
            Countdown List V1.0
            Count Down List V1.0
                        </TextBlock>
                        <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#7FF7F7F7">
                            By shRabbit
+2 −3
Original line number Diff line number Diff line
@@ -122,7 +122,6 @@ namespace CountDownList
            Application.Current.Shutdown();
#else
            Close();
            Application.Current.Shutdown();
#endif
        }

@@ -182,8 +181,8 @@ namespace CountDownList
        private async void Window_Loaded(object sender, RoutedEventArgs e)
        {
#if DEBUG
            //UI.WindowFrame.LogViewer logViewer = new();
            //logViewer.Show();
            UI.WindowFrame.LogViewer logViewer = new();
            logViewer.Show();
#endif
            if(MiscSetting.Default.GaussianBlurMode)
                EnableBlur();
Loading