RssListItem.cs
资源名称:MobileRss.rar [点击查看]
上传用户:xtyqhl
上传日期:2022-06-07
资源大小:212k
文件大小:1k
源码类别:
Windows Mobile
开发平台:
Windows_Unix
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Text;
- using System.Windows.Forms;
- namespace _3ESoft.WindowsMobile.RSS.Contronl
- {
- public partial class RssListItem : UserControl
- {
- public RssListItem()
- {
- InitializeComponent();
- }
- [DefaultValueAttribute("")]
- public string Title { get; set; }
- [DefaultValueAttribute(0)]
- public long Lenght { get; set; }
- [DefaultValueAttribute("2008-02-24")]
- //[System.ComponentModel.DesignerCategory("Data")]
- //[System.ComponentModel.DesignTimeVisible(true)]
- public DateTime PubDateTime { get; set; }
- public RssNews RSSNews { get; set; }
- private void RssListItem_Paint(object sender, PaintEventArgs e)
- {
- Height = 30;
- this.Dock = DockStyle.Top;
- }
- }
- }