Skip to content
Snippets Groups Projects
Commit 62a334e0 authored by nguyenha63321's avatar nguyenha63321
Browse files

Upload New File

parent 4e7d8fdb
No related branches found
No related tags found
No related merge requests found
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
namespace App3
{
public class HighscoreItem:INotifyPropertyChanged
{
// public int Index {get; set;}
[XmlIgnore]
public string Time { get; set; }
[XmlAttribute("Timestring", DataType ="duration")]
public string XmlTime
{
get { return Time; }
set { Time = value; }
}
public HighscoreItem()
{
}
public HighscoreItem ( string solvingTime)
{
//Index = scoreIndex;
Time = solvingTime;
}
public event PropertyChangedEventHandler PropertyChanged;
void OnPropertyChanged(string time)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(time));
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment