mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
25 lines
509 B
C++
25 lines
509 B
C++
#pragma once
|
|
|
|
#include "MainWindow.g.h"
|
|
#include "../FileLocksmithLib/FileLocksmith.h"
|
|
|
|
namespace winrt::FileLocksmithGUI::implementation
|
|
{
|
|
struct MainWindow : MainWindowT<MainWindow>
|
|
{
|
|
MainWindow();
|
|
|
|
private:
|
|
std::vector<ProcessResult> m_process_info;
|
|
void find_processes();
|
|
void place_and_resize();
|
|
};
|
|
}
|
|
|
|
namespace winrt::FileLocksmithGUI::factory_implementation
|
|
{
|
|
struct MainWindow : MainWindowT<MainWindow, implementation::MainWindow>
|
|
{
|
|
};
|
|
}
|