how is it possible to test a web application developed in VS 2008, in different internet speed connections? Thanks in advance? 对于慢速(调制解调器)速度的快速测试,您可以使用Fiddler并启用“模拟调制解调器速度”选项 - 可在规则 - >性能菜单中找到。 你可以用Netlimiter等工具来节制你的bandwith。 You can throttle your bandwidth but this still won't give you an accurate idea of how fast it will
如何在不同的互联网速度连接上测试VS 2008中开发的Web应用程序? 提前致谢? 对于慢速(调制解调器)速度的快速测试,您可以使用Fiddler并启用“模拟调制解调器速度”选项 - 可在规则 - >性能菜单中找到。 你可以用Netlimiter等工具来节制你的bandwith。 你可以节制你的带宽,但是这还不能给你一个准确的概念,说明它对于其他用户的速度有多快。 还有其他因素,例如它的托管位置。
I have a form that has many long-methods. My quest is: What is the best practice? Use anonymous method and only one backgroundworker or create an instance of BackgroundWorker to each long-method. Please help. Thanks. I would personnaly use one instance of BackgroundWorker for each of your tasks. However, keep in mind that you may call several times the same delegate method in multiple dif
我有一个有很多长方法的表单。 我的追求是:最佳做法是什么? 使用匿名方法,只有一个背景工作者或为每个长方法创建一个BackgroundWorker实例。 请帮忙。 谢谢。 我会为每个任务使用一个BackgroundWorker实例。 但是,请记住,您可能会在多个不同的线程实例中多次调用相同的委托方法。 通过每个长时间任务使用一个BackgroundWorker,您将对您的方法有很大的控制权。 此外,就我的理解而言,一旦BackgroundWorker的实
Hey, I'm trying to write a program in C# that will track the pressing of certain keys (using a keyboard hook), and send different ones instead. For instance, when I press the A key it will instead send the Q key. I used http://www.codeproject.com/KB/cs/CSLLKeyboardHook.aspx this for my hooks and tried to use the SendKeys function, but I get an exception about the garbage collector destroy
嘿,我试图用C#编写一个程序来跟踪按下某些键(使用键盘钩子),然后发送不同的键。 例如,当我按A键时,它将发送Q键。 我使用了http://www.codeproject.com/KB/cs/CSLLKeyboardHook.aspx这个为我的钩子,并试图使用SendKeys函数,但我得到一个关于垃圾收集器销毁钩子类内的一些对象的异常。 首先你需要连接钥匙。 有了这门课,你可以注册一个全球快捷方式,我可以跳过这个解释,但你可以在这里阅读。 public class Key
I have a project which has a set of binary dependencies (assembly dlls for which I do no have the source code). At runtime those dependencies are required pre-installed on the machine and at compile time they are required in the source tree, e,g in a lib folder. As I'm also making source code available for this program I would like to enable a simple download and build experience for it. U
我有一个项目,它有一组二进制依赖项(我没有源代码的程序集dll)。 在运行时,这些依赖项需要预先安装在机器上,并且在编译时它们在源代码树中是必需的,例如在lib文件夹中。 由于我还为此程序提供了源代码,因此我希望为其启用简单的下载和构建体验。 不幸的是,我不能重新分配dll,这使事情变得复杂,因为VS不会在不访问引用的dll的情况下链接项目。 无论如何,在没有真正参考的dll的情况下,能够建立并链接这个项目吗?
I'd like to find a replacement for Crystal Reports. Oh how I dislike CR. Ideally I'd like to find a PDF generation tool that has the following: Solid API in .NET Speed: we'd like to generate 1000-2500 pdfs per day WYSIWYG editor hotlinking of image files (logos) good widow/orphan control reasonably good typography control (kerning) repeatable fields (like you'd se
我想找到Crystal Reports的替代品。 哦,我不喜欢CR。 理想情况下,我想找到一个PDF生成工具,它具有以下内容: .NET中的固体API 速度:我们希望每天生成1000-2500个pdf 所见即所得编辑器 图像文件的热链接(徽标) 好寡妇/孤儿控制 相当不错的排版控制(字距调整) 可重复的领域(就像你在银行对帐单中看到的那样) 轻松地从xml数据,数据集或直接sql查询中推入数据 大小:PDF文件的最终大小很重要,因为
I'm trying to do some work with C# and XML in a cross-platform app (most development is in MonoDevelop on Linux, but most users will end up using the WinForms front-end that I make in Visual Studio). Mono is behaving as I'd expect, but .Net isn't and so I'm looking for options and alternatives. The schemas have various optional elements followed by an "xs:any" element
我试图在跨平台的应用程序中使用C#和XML进行一些工作(大多数开发都在Linux上的MonoDevelop上,但大多数用户最终将使用我在Visual Studio中制作的WinForms前端)。 Mono的行为和我所期望的一样,但.Net并不是,所以我正在寻找选择和替代方案。 模式具有各种可选元素,后跟“xs:any”元素。 这在Mono中工作得很好,但在Microsoft的.Net中却没有,因为它抱怨可选元素的出现在其架构中的实际定义和“xs:any”之间是不明确的。
I am having a hard time tracking down a lock issue, so I would like to log every method call's entry and exit. I've done this before with C++ without having to add code to every method. Is this possible with C#? Probably your best bet would be to use an AOP (aspect oriented programming) framework to automatically call tracing code before and after a method execution. A popular choice
我很难跟踪锁定问题,所以我想记录每个方法调用的进入和退出。 我之前使用C ++完成此操作,而不必为每个方法添加代码。 这可能与C#? 可能你最好的选择是使用AOP(面向方面编程)框架在方法执行前后自动调用跟踪代码。 AOP和.NET的流行选择是PostSharp。 Profiler非常适合在开发过程中查看正在运行的代码,但如果您正在寻找在生产环境中执行自定义跟踪的功能,那么,正如Denis G.所言,PostSharp是一个完美的工具:您
I have a textbox inside a userrcontrol. The Usercopntrol has a Dependency property "Text" of type String. The usercontrol's Text property is bound to the TextBoxes Text property. public static readonly DependencyProperty TextProperty = DependencyProperty.Register( "Text", typeof(String), typeof(MyTextControl), new FrameworkPropertyMetadata(String.E
我有一个userrcontrol内的文本框。 Usercopntrol有一个类型为String的Dependency属性“Text”。 usercontrol的Text属性绑定到TextBoxes Text属性。 public static readonly DependencyProperty TextProperty = DependencyProperty.Register( "Text", typeof(String), typeof(MyTextControl), new FrameworkPropertyMetadata(String.Empty, FrameworkPropertyMetadataOptions.BindsTwoWayByDefau
So lets say I have a WPF form with several text boxes, if you tab to the text box and it already has something in it, I want to select all the text in that box so typing will erase that text. If you mouse click on the box, it probably means you want to change a letter somewhere, so do not highlight all in this case. Seems easy enough, but a good solution as so far eluded me. Here's what I
因此,假设我有一个带有几个文本框的WPF表单,如果您选中该文本框并且它已经包含某些内容,那么我想选择该框中的所有文本,以便键入将删除该文本。 如果你用鼠标点击该框,这可能意味着你想在某处更改一个字母,所以在这种情况下不要突出显示所有字母。 看起来很简单,但是迄今为止,我还是一个很好的解决方案。 这是我迄今为止的工作非常接近,但并不完美。 <Style x:Key="TextBoxStyle" TargetType="TextBox"> &l
I'm trying to determine whether or not a user left the WPF TextBox using the keyboard or the mouse. If I decide to monitor the TextBox for certain keys being pressed, what are the keys for which I should watch? Put another way (hence the question title): Question : With what keys can a user possibly leave a WPF TextBox? Is it only Tab , or are there other keys to consider? Don't
我试图确定用户是否使用键盘或鼠标离开了WPF文本框。 如果我决定监视文本框中的特定按键,我应该看哪些按键? 换一种方式(因此问题标题): 问题 :使用什么键可以离开WPF文本框? 它只是Tab,还是有其他的钥匙需要考虑? 不要忘记 Shift-Tab键 箭头键(取决于焦点) Alt菜单选项组合键 使用Alt-Tab Windows键 标签。 但是,在Windows窗体(包括WPF)中,您可以完全控制所有内容,因此可能导致控件失去焦