RssListItem.cs
上传用户:xtyqhl
上传日期:2022-06-07
资源大小:212k
文件大小:1k
源码类别:

Windows Mobile

开发平台:

Windows_Unix

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace _3ESoft.WindowsMobile.RSS.Contronl
  9. {
  10.     public partial class RssListItem : UserControl
  11.     {
  12.         public RssListItem()
  13.         {
  14.             InitializeComponent();
  15.         }
  16.         [DefaultValueAttribute("")]
  17.         public string  Title { get; set; }
  18.         [DefaultValueAttribute(0)]
  19.         public long Lenght { get; set; }
  20.         
  21.         [DefaultValueAttribute("2008-02-24")]
  22.         //[System.ComponentModel.DesignerCategory("Data")]
  23.         //[System.ComponentModel.DesignTimeVisible(true)]
  24.         public DateTime PubDateTime { get; set; }
  25.         public RssNews RSSNews { get; set;  }
  26.        
  27.         private void RssListItem_Paint(object sender, PaintEventArgs e)
  28.         {
  29.             Height = 30;
  30.             this.Dock = DockStyle.Top;
  31.         }
  32.     }
  33. }