Skip to content

Commit

Permalink
Dev wpf (#15)
Browse files Browse the repository at this point in the history
Convert Namespaces designer to WPF/MVVM
Create C# custom action to detect VS2019 and not require WiX 3.14 to build IsWiX installer
  • Loading branch information
chrpai authored Mar 11, 2019
1 parent 51f5e64 commit 357a4d4
Show file tree
Hide file tree
Showing 20 changed files with 490 additions and 1,132 deletions.
686 changes: 0 additions & 686 deletions Application/Designers/NamespacesDesigner/DataSetNamespaces.Designer.cs

This file was deleted.

This file was deleted.

27 changes: 0 additions & 27 deletions Application/Designers/NamespacesDesigner/DataSetNamespaces.xsd

This file was deleted.

12 changes: 0 additions & 12 deletions Application/Designers/NamespacesDesigner/DataSetNamespaces.xss

This file was deleted.

20 changes: 20 additions & 0 deletions Application/Designers/NamespacesDesigner/Models/NamespaceModel.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using FireworksFramework.Types;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace NamespacesDesigner.Models
{
public class NamespaceModel : ObservableObject
{
string _prefix;
string _uri;
bool _selected;
public bool Selected { get { return _selected; } set { _selected = value; RaisePropertyChangedEvent("Selected"); } }
public string Prefix { get { return _prefix; } set { _prefix = value; RaisePropertyChangedEvent("Prefix"); } }
public string Uri { get { return _uri; } set { _uri = value; RaisePropertyChangedEvent("Uri"); } }

}
}
126 changes: 0 additions & 126 deletions Application/Designers/NamespacesDesigner/Namespaces.Designer.cs

This file was deleted.

116 changes: 0 additions & 116 deletions Application/Designers/NamespacesDesigner/Namespaces.cs

This file was deleted.

Loading

0 comments on commit 357a4d4

Please sign in to comment.