Setting up source code for Avalonia port.
This commit is contained in:
parent
27e6c97712
commit
8110fe420e
53 changed files with 991 additions and 58 deletions
21
src.4.7/VariableItem.cs
Normal file
21
src.4.7/VariableItem.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using System.Windows;
|
||||
|
||||
namespace AdvancedCalculator
|
||||
{
|
||||
public class VariableItem
|
||||
{
|
||||
#region Properties
|
||||
|
||||
public string VariableName { get; set; }
|
||||
|
||||
public string Icon { get; set; }
|
||||
|
||||
public string Value { get; set; }
|
||||
|
||||
public Visibility ExpressionVisibility { get; set; }
|
||||
|
||||
public string ExpressionComputation { get; set; }
|
||||
|
||||
#endregion Properties
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue