mirror of
https://github.com/microsoft/terminal.git
synced 2026-04-21 05:31:37 +00:00
31 lines
666 B
C++
31 lines
666 B
C++
#include "pch.h"
|
|
#include "ColorSchemes.h"
|
|
#if __has_include("ColorSchemes.g.cpp")
|
|
#include "ColorSchemes.g.cpp"
|
|
#endif
|
|
|
|
using namespace winrt::Windows::UI::Xaml;
|
|
|
|
namespace winrt::Microsoft::Terminal::Settings::Control::implementation
|
|
{
|
|
ColorSchemes::ColorSchemes()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
int32_t ColorSchemes::MyProperty()
|
|
{
|
|
throw hresult_not_implemented();
|
|
}
|
|
|
|
void ColorSchemes::MyProperty(int32_t /* value */)
|
|
{
|
|
throw hresult_not_implemented();
|
|
}
|
|
|
|
void ColorSchemes::ClickHandler(IInspectable const&, RoutedEventArgs const&)
|
|
{
|
|
//Button().Content(box_value(L"Clicked"));
|
|
}
|
|
}
|