Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 Silverlight 中制作附件组件,并且想知道他们是否在 Silverlight .NET 中有一个 api,或者在我开始上传文件之前知道文件大小的方法。Gmail之类的...
谢谢
OpenFileDialog ofd = new OpenFileDialog(); const int megaSize = 1024000; if (ofd.File.Length > megaSize) ShowError("Can not upload images with this size.");
希望能帮助到你