mirror of https://github.com/M2Team/NanaZip.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
592 B
23 lines
592 B
#pragma once
|
|
|
|
#include "StatusBar.g.h"
|
|
#include "ControlMacros.h"
|
|
|
|
namespace winrt::NanaZip::Modern::implementation
|
|
{
|
|
struct StatusBar : StatusBarT<StatusBar>
|
|
{
|
|
StatusBar() = default;
|
|
|
|
DEPENDENCY_PROPERTY_HEADER(Text1, winrt::hstring);
|
|
DEPENDENCY_PROPERTY_HEADER(Text2, winrt::hstring);
|
|
DEPENDENCY_PROPERTY_HEADER(Text3, winrt::hstring);
|
|
DEPENDENCY_PROPERTY_HEADER(Text4, winrt::hstring);
|
|
};
|
|
}
|
|
|
|
namespace winrt::NanaZip::Modern::factory_implementation
|
|
{
|
|
struct StatusBar : StatusBarT<StatusBar, implementation::StatusBar>
|
|
{ };
|
|
}
|