designer

VS2010 “An item with the same key has already been added”

倖福魔咒の 提交于 2019-11-28 10:46:33
I recently installed Visual Studio 2010 and copied and converted an old VS2005 solution to VS2010 When I edit this solution, if I try to change a control's .image property, VS2010 creates a message box telling me that "An item with the same key has already been added" (screenshot below), and won't let me browse for an image. I can add images for any other solution, even others ported from VS2005, but not this one. Any idea what I'm doing wrong? An item with the same key has already been added. http://img121.imageshack.us/img121/3592/errorsy.jpg I worked this out thanks to a search. The

XAML Designer Window won't load for “Universal Windows” app - even in new project

元气小坏坏 提交于 2019-11-28 10:38:15
问题 I seem to recall running into this before but can't for the life of me recall how I got around it and no depth of Googleing seems to help. Here's the problem: When I open VS2015 (Community version) with a "Universal Windows" project, new or old, even without changing a single thing, I get an Exception in the designer window. The XAML code shows up fine, but the designer window gives me "error 0X80070005: While processing the request, the system failed to register the windows.capability

Visual Studio 2013 SQL Query and View Designer not appearing

喜夏-厌秋 提交于 2019-11-28 07:41:53
问题 Not sure why the Query and View Designer is not appearing as per http://msdn.microsoft.com/en-us/library/vstudio/ms172013.aspx It's an ASP.net project with database in the AppData folder, and a connection using SQL 2008 Express. If it helps the connection string is: Data Source=.\SQLEXPRESS;AttachDbFilename="C:\folders...\App_Data\database.mdf";Integrated Security=True;Connect Timeout=30;User Instance=True If I open the project in VS2012 (where I've worked on this project for some time), find

Xamarin VS2015 designer not working

こ雲淡風輕ζ 提交于 2019-11-28 05:40:18
问题 I am working with xamarin for visual studio 2015. For 2 days now the designer of the layout stopped working. It is very difficult to identify the problem cause i don't remember doing anything specific during these days. Here is a screenshot of the error message I have been trying to follow instructions from all over the web, including the xamarin suggestions, without any success. Here is the detailed text of the exception: java.lang.NoClassDefFoundError: com/android/utils/ILogger at java.lang

Why isn't Expression Blend 4's designer working whenever we use build configurations?

帅比萌擦擦* 提交于 2019-11-28 01:58:25
问题 I'm having an odd issue with Expression Blend 4. I've been using Blend 4 in conjunction with Visual Studio 2010 for quite a while without incident (beyond the ultra-frequent crashes). Now our graphics designer wants to start using Blend to do some touch-up work. We were able to get Blend to compile the solution on his computer. Unfortunately, when we try to open any XAML file, we get errors from the designer where resources included through the merged resource dictionary and attached

android studio designer preview: how to include device frame?

此生再无相见时 提交于 2019-11-27 23:33:13
There seems to be tons of answers to the opposite question "how to remove device frame" which instructs user to click the "settings" button inside preview to uncheck "include device frame (if available)". But for me using 2.2.2 on a mac and 2.2.1 earlier, such a button with that option never was available. Out of the box (dmg) Android Studio Designer always only shows the viewport without any device frame. This explanation of the Designer settings suggests that option is only available if "include device frame" option is selected, but for me that is a chicken & egg issue. I'm using the default

IS there a gui designer for wxwidgets in linux with Eclipse?

≯℡__Kan透↙ 提交于 2019-11-27 18:44:21
问题 I want to build a GUI application using C++ and wxWidgets. The problem is that I can not find an IDE with GUI (Form Designer) to use. I hope if eclipse has some thing like the QT designer. any solutions ??? 回答1: wxFormBuilder is pretty good. It is stable and has support for most of the standard widgets. 回答2: While I'm not sure of integrating with Eclipse, you can run wxGlade for designing interfaces, then export the code. 回答3: The wxsmith plugin for Code::Blocks is worth checking out. It

Where is the visual studio HTML Designer?

牧云@^-^@ 提交于 2019-11-27 17:33:52
Where is the Visual Studio HTML Designer? I see that there are options for the HTML Designer but I can't open it. So I just want to ask why I can't find the designer and how do I open it. When I create an HTML file it just goes to the HTML code. The default HTML editor (for static HTML) doesn't have a design view. To set the default editor to the Web forms editor which does have a design view, Right click any HTML file in the Solution Explorer in Visual Studio and click on Open with Select the HTML (web forms) editor Click on Set as default Click on the OK button Once you have done that, all

How to represent Unicode Chr Code in VB.Net String literal?

感情迁移 提交于 2019-11-27 15:28:06
I know you can put unicode character codes in a VB.Net string like this: str = Chr(&H0030) & "More text" I would like to know how I can put the char code right into the string literal so I can use unicode symbols from the designer view. Is this even possible? Use the ChrW() function to return Unicode characters. Dim strW As String strW = ChrW(&H25B2) & "More text" Hans Passant The C# language supports this with escapes: var str = "\u0030More text"; But that isn't available in VB.NET. Beware that you almost certainly don't want to use Chr(), that is meant for legacy code that works with the

Visual Studio 2008 Winform designer fails to load Form which inherits from generic class

回眸只為那壹抹淺笑 提交于 2019-11-27 15:06:06
i have a winforms project, and i created a class on assembly A that inherits from System.Windows.Forms.Form to serve as a base class for various forms on my project, the base class is something like: public partial class DataForm<T> : Form where T : class { T currentRecord; protected T CurrentRecord { get { return currentRecord; } set { currentRecord = value; CurrentRecordChanged(); } } } Now, when i create a form on assembly B that inherits from my DataForm the designer won't load, but if i compile it the app runs fine. The form looks like: public partial class SomeTableWindow : DataForm