devflow
devflow copied to clipboard
DevFlow
템플릿 작업을 위해 수정중입니다. TBD...
DevFlow는 개발자를 위한 유용한 기능들을 제공하는 프로그램입니다.
이 앱은 WPF와 C#을 기반으로 하고 있으며, 거의 모든 코드가 외부 라이브러리 없이 .NET Framework로만 개발되었습니다.
| Star | License | Activity |
|---|---|---|
Table of Contents
- Application
- QuickSlot
- ColorSpoid
- Finder
Application
using System;
using System.Windows;
using DevFlow.Data.Theme;
using DevFlow.Main.Views;
using DevFlow.Windowbase.Flowbase;
namespace DevFlow
{
public class App : FlowApp
{
protected override ThemeType OnSetDefaultTheme(ThemeType type) => ThemeType.Dark;
protected override void OnApplyThemeManager()
{
AddTheme(ThemeType.Dark, "Generic.Dark.xaml");
AddTheme(ThemeType.White, "Generic.White.xaml");
}
protected override void OnStartup(StartupEventArgs e)
{
bool dialogResult = true;
while (dialogResult)
{
ShutdownMode = ShutdownMode.OnExplicitShutdown;
main = new MainView();
main.ShowDialog();
dialogResult = (bool)main.DialogResult;
}
Environment.Exit(0);
}
}
}
QuickSlot
QuickSlot : Widget
- ContentTemplate
