コード例 #1
0
ファイル: OSDMessage.cs プロジェクト: jindal1979/Flyleaf
 public SubStyle(SubStyles style, int from = -1, int len = -1, Color?value = null)
 {
     this.style = style;
     this.value = value == null ? Color.White : (Color)value;
     this.from  = from;
     this.len   = len;
 }
コード例 #2
0
 public Anime(UInt32 id, String title, String name, UInt32 year, PlaySeason season, MediaType type,
              MergeFormat format, String subTeam, SubStyles subStyle, String path,
              Int64 size, Boolean store, Boolean enjoy, Int32 grade, DateTime createTime,
              DateTime updateTime, String kana, String episode, String inc, String note)
 {
     this.ID         = id;
     this.Title      = title;
     this.Name       = name;
     this.Year       = year;
     this.Season     = season;
     this.Type       = type;
     this.Format     = format;
     this.SubTeam    = subTeam;
     this.SubStyle   = subStyle;
     this.Path       = path;
     this.Size       = size;
     this.Store      = store;
     this.Enjoy      = enjoy;
     this.Grade      = grade;
     this.CreateTime = createTime;
     this.UpdateTime = updateTime;
     this.Kana       = kana;
     this.Episode    = episode;
     this.Inc        = inc;
     this.Note       = note;
 }