资源简介

这些日子做机顶盒的项目,领导提出:机顶盒主界面最好有个跑马灯的效果图,可以提示用户哪些信息更新了。跑马灯的实例在网上可能很多,但大多都是用label和timer控件控制,屏幕有些闪烁不说,控件还会动,下过很不好。于是自己写了些代码,也修改了些网上找的代码。做这个东西,花了我些许时间,先把它分享给大家,需要的话,可以下载。

资源截图

代码片段和文件信息

using System.Reflection;
using System.Runtime.CompilerServices;

//
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly: Assemblytitle(““)]
[assembly: AssemblyDescription(““)]
[assembly: AssemblyConfiguration(““)]
[assembly: AssemblyCompany(““)]
[assembly: AssemblyProduct(““)]
[assembly: AssemblyCopyright(““)]
[assembly: AssemblyTrademark(““)]
[assembly: AssemblyCulture(““)]

//
// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version 
//      Build Number
//      Revision
//
// You can specify all the values or you can default the Revision and Build Numbers 
// by using the ‘*‘ as shown below:

[assembly: AssemblyVersion(“1.0.*“)]

//
// In order to sign your assembly you must specify a key to use. Refer to the 
// Microsoft .NET framework documentation for more information on assembly signing.
//
// Use the attributes below to control which key is used for signing. 
//
// Notes: 
//   (*) If no key is specified the assembly is not signed.
//   (*) KeyName refers to a key that has been installed in the Crypto Service
//       Provider (CSP) on your machine. KeyFile refers to a file which contains
//       a key.
//   (*) If the KeyFile and the KeyName values are both specified the 
//       following processing occurs:
//       (1) If the KeyName can be found in the CSP that key is used.
//       (2) If the KeyName does not exist and the KeyFile does exist the key 
//           in the KeyFile is installed into the CSP and used.
//   (*) In order to create a KeyFile you can use the sn.exe (Strong Name) utility.
//       When specifying the KeyFile the location of the KeyFile should be
//       relative to the project output directory which is
//       %Project Directory%\obj\. For example if your KeyFile is
//       located in the project directory you would specify the AssemblyKeyFile 
//       attribute as [assembly: AssemblyKeyFile(“..\\..\\mykey.snk“)]
//   (*) Delay Signing is an advanced option - see the Microsoft .NET framework
//       documentation for more information on this.
//
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile(““)]
[assembly: AssemblyKeyName(““)]

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2426  2004-04-20 13:43  ScrollingTextControl\ScrollingTextControl\AssemblyInfo.cs

     文件      28672  2009-04-24 18:05  ScrollingTextControl\ScrollingTextControl\bin\Debug\ScrollingTextControl.dll

     文件      24064  2009-04-24 18:05  ScrollingTextControl\ScrollingTextControl\bin\Debug\ScrollingTextControl.pdb

     文件      16384  2009-04-09 15:14  ScrollingTextControl\ScrollingTextControl\obj\Debug\Refactor\ScrollingTextControl.dll

     文件        777  2009-04-24 17:52  ScrollingTextControl\ScrollingTextControl\obj\Debug\ScrollingTextControl.csproj.GenerateResource.Cache

     文件      28672  2009-04-24 18:05  ScrollingTextControl\ScrollingTextControl\obj\Debug\ScrollingTextControl.dll

     文件      24064  2009-04-24 18:05  ScrollingTextControl\ScrollingTextControl\obj\Debug\ScrollingTextControl.pdb

     文件       1334  2004-04-20 17:05  ScrollingTextControl\ScrollingTextControl\obj\Debug\ScrollingTextControl.ScrollingText.bmp

     文件       2937  2009-04-24 17:52  ScrollingTextControl\ScrollingTextControl\obj\Debug\ScrollingTextControl.ScrollingText.resources

     文件        354  2009-04-24 18:05  ScrollingTextControl\ScrollingTextControl\obj\ScrollingTextControl.csproj.FileList.txt

     文件       1334  2004-04-20 17:05  ScrollingTextControl\ScrollingTextControl\ScrollingText.bmp

     文件      12449  2009-04-24 18:05  ScrollingTextControl\ScrollingTextControl\ScrollingText.cs

     文件      12334  2009-04-09 18:07  ScrollingTextControl\ScrollingTextControl\ScrollingText.cs.bak

     文件       6440  2004-04-22 14:47  ScrollingTextControl\ScrollingTextControl\ScrollingText.resx

     文件       4154  2009-04-09 14:22  ScrollingTextControl\ScrollingTextControl\ScrollingTextControl.csproj

     文件       2083  2009-04-09 14:22  ScrollingTextControl\ScrollingTextControl\ScrollingTextControl.csproj.user

     文件       1419  2009-04-09 14:22  ScrollingTextControl\ScrollingTextControl.sln

    ..A..H.     24064  2009-04-24 18:05  ScrollingTextControl\ScrollingTextControl.suo

     文件       1078  2004-04-21 16:33  ScrollingTextControl\TestBed\App.ico

     文件       2426  2004-04-21 16:33  ScrollingTextControl\TestBed\AssemblyInfo.cs

     文件      28672  2009-04-24 18:05  ScrollingTextControl\TestBed\bin\Debug\ScrollingTextControl.dll

     文件      24064  2009-04-24 18:05  ScrollingTextControl\TestBed\bin\Debug\ScrollingTextControl.pdb

     文件      20480  2009-04-24 18:05  ScrollingTextControl\TestBed\bin\Debug\TestBed.exe

     文件      15872  2009-04-24 18:05  ScrollingTextControl\TestBed\bin\Debug\TestBed.pdb

     文件       5632  2005-12-08 14:51  ScrollingTextControl\TestBed\bin\Debug\TestBed.vshost.exe

     文件       7322  2009-04-14 14:04  ScrollingTextControl\TestBed\Form1.cs

     文件       5814  2009-04-14 14:04  ScrollingTextControl\TestBed\Form1.resx

     文件       4639  2009-04-24 18:05  ScrollingTextControl\TestBed\obj\Debug\ResolveAssemblyReference.cache

     文件        769  2009-04-14 14:04  ScrollingTextControl\TestBed\obj\Debug\TestBed.csproj.GenerateResource.Cache

     文件      20480  2009-04-24 18:05  ScrollingTextControl\TestBed\obj\Debug\TestBed.exe

............此处省略25个文件信息

评论

共有 条评论