designer

Disable XAML UI designer

点点圈 提交于 2019-11-29 16:51:48
问题 How to disable XAML designer in VS 2011. I have checked following links possible to default-disable XAML designer in VS 2008? http://www.dolittle.com/blogs/einar/archive/2008/04/24/quot-disable-quot-xaml-designer-in-visual-studio-2008.aspx http://weblogs.asp.net/alexeyzakharov/archive/2010/01/27/disable-visual-studio-xaml-designer-better-way.aspx Problem with above is that intellisense also goes away with setting different text editor. 回答1: In Visual Studio 2015 you can completely turn off

Visual Studio 2013 SQL Query and View Designer not appearing

↘锁芯ラ 提交于 2019-11-29 13:45:39
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 a table, right click, new query, I get the nice interactive visual design tool. If I open the project

Xamarin VS2015 designer not working

安稳与你 提交于 2019-11-29 12:10:22
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.Class.getDeclaredMethods0(Native Method) at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)

VS addin: View markup. Does exist something like that?

放肆的年华 提交于 2019-11-29 11:18:58
While working with ASP.NET using Visual Studio (2008) I have discomfort issue: source code editor context menu has only item ' View Designer ' but nothing about to view markup quickly! To see it you need to open Designer and click Markup label in the bottom of a window. Or use Shift+F7 hot key (by default). So I want to add an item menu ' View Markup ' in additional to ' View Designer '. I guess I have to use a Visual Studio add-in if it already exists or write it by myself. What do you think about that? Is it possible? Or is some solution already exists? Eugene Baranovsky Tools > Options >

Custom Designer for a Control

戏子无情 提交于 2019-11-29 09:31:12
问题 I've got a custom class which derives from SplitContainer: namespace Builder.Components { public partial class ProjectSidebar : SplitContainer { public ProjectSidebar() { InitializeComponent(); } } } Now when I right-click and select View Designer I'd like to see the SplitContainer and edit it, like I would with the default controls (drop a panel in it, etc.). All I see is a message to add controls and switch to Code view . How to achieve this? 回答1: In order to add design-time functionality

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

大兔子大兔子 提交于 2019-11-29 04:53:13
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 ??? wxFormBuilder is pretty good. It is stable and has support for most of the standard widgets. While I'm not sure of integrating with Eclipse, you can run wxGlade for designing interfaces, then export the code. The wxsmith plugin for Code::Blocks is worth checking out. It would mean switching IDEs, but C::B is cross-platform just like Eclipse. shumifan49 As ravenspoint indicated - it is most

What's the purpose of the components IContainer generated by the Winforms designer?

断了今生、忘了曾经 提交于 2019-11-29 02:14:14
问题 When you create a new form in Visual Studio, the designer generates the following code in the .Designer.cs file: /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) {

Fix embedded resources for a generic UserControl

懵懂的女人 提交于 2019-11-28 21:13:55
During a refactoring, I added a generic type parameter to MyControl , a class derived from UserControl . So my class is now MyControl<T> . Now I get an error at runtime stating that the embedded resource file MyControl`1.resources cannot be found. A quick look with .NET Reflector shows that the resource file is actually called MyControl.resources , without the `1 . At the start of the MyControl<T>.InitializeComponent method there is this line which is probably the one causing problems: System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager

Design-time-only background color in WPF?

前提是你 提交于 2019-11-28 17:28:29
问题 In WPF XAML there is the convenient DesignHeight and DesignWidth , for instance in code as <UserControl ... d:DesignHeight="500" d:DesignWidth="500" ... /> which is great because I can build the layout with a representative , but not locked-in , control size. However, I'm often building dark UIs, where labels and so forth need to be white, but my controls still need a transparent background color. This creates a design-time inconvenience because white seems to be the default background color

How to manually reload the Visual Studio designer for WPF

梦想的初衷 提交于 2019-11-28 16:58:22
问题 Is there any way to force the WPF designer to reload or refresh, without rebuilding the entire project or solution? If there's an error, I get an option in the designer view to refresh the designer. But if I don't have an error, how can I get the designer to refresh after I've made a change? 回答1: I'm a little late but this is the best solution 1 I've found so far: whenever the designer does stupid stuff, I just kill it's process. Press Ctrl + Shift + Esc Navigate to the Processes tab. Kill