示例#1
0
        public TagModelItemPicture()
        {
            PictureType = new DocEnum(ID3.FrameContentPicture.PictureTypes);
            Content     = new DocObj <byte[]>();

            Content.PropertyChanged += delegate(object sender, PropertyChangedEventArgs e)
            {
                if (e.PropertyName == DocBase.PropertyName(Content, m => m.Value))
                {
                    bitmapFrameCache = null;
                    NotifyPropertyChanged(this, m => m.Image);
                }
            };
        }
示例#2
0
 public TagModelItemComment()
 {
     Language    = new DocEnum(Languages);
     Description = new DocObj <string>();
 }