diff options
Diffstat (limited to 'platform/windows/gsview/ContentItem.cs')
-rw-r--r-- | platform/windows/gsview/ContentItem.cs | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/platform/windows/gsview/ContentItem.cs b/platform/windows/gsview/ContentItem.cs deleted file mode 100644 index a58bdf79..00000000 --- a/platform/windows/gsview/ContentItem.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -//using System.Threading.Tasks; -using System.ComponentModel; - -namespace gsview -{ - class ContentItem : INotifyPropertyChanged - { - - public int Page - { - get; - internal set; - } - - public String StringMargin - { - get; - internal set; - } - - public ContentItem() - { - StringMargin = ""; - Page = 0; - } - - public event PropertyChangedEventHandler PropertyChanged; - - public void ContentRefresh() - { - if (PropertyChanged != null) - { - PropertyChanged(this, new PropertyChangedEventArgs("StringMargin")); - PropertyChanged(this, new PropertyChangedEventArgs("Page")); - } - } - } -} |