Create EquationTextBox control (#547)
This commit is contained in:
@@ -2,11 +2,14 @@
|
||||
#include "EquationViewModel.h"
|
||||
|
||||
using namespace Windows::UI;
|
||||
using namespace Windows::UI::Xaml;
|
||||
|
||||
namespace CalculatorApp::ViewModel
|
||||
{
|
||||
EquationViewModel::EquationViewModel()
|
||||
: m_LineColor{ Colors::Transparent }
|
||||
: m_LineColor{ Colors::Transparent },
|
||||
m_KeyGraphFeaturesVisibility{ ::Visibility::Collapsed },
|
||||
m_Expression{ "" }
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,5 +12,6 @@ namespace CalculatorApp::ViewModel
|
||||
OBSERVABLE_OBJECT();
|
||||
OBSERVABLE_PROPERTY_RW(Platform::String^, Expression);
|
||||
OBSERVABLE_PROPERTY_RW(Windows::UI::Color, LineColor);
|
||||
OBSERVABLE_PROPERTY_RW(Windows::UI::Xaml::Visibility, KeyGraphFeaturesVisibility);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user