windows-forms-designer Questions
2
Solved
I am Microsoft Rdlc Report Designer extension and NuGet ReportViewerControl.Winform package.
Now it is possible to open *.rdlc file in Visual Studio 2017 designer, but when i try to save my report...
Sorayasorb asked 18/4, 2017 at 7:17
1
Solved
I'm making a base form (WinForm) to use like a blueprint for my general form design, I want the panel (P_Content in the screenshot) to be where controls are put in the Child Forms.
But said P_Cont...
Villeinage asked 18/4, 2018 at 7:55
5
Solved
My question is not how to debug during design time. I actually want to debug through the events available in designer. I know that the form has load and other type of events. Is there any events in...
Telencephalon asked 20/5, 2016 at 12:51
2
Solved
Within the Visual Studio Designer, under the properties window you are able to select the ForeColor, BackColor etc using color picker. When you want to pick a color, a color picker comes up with th...
Nobody asked 7/3, 2016 at 9:33
3
Solved
public class StatisticsViewPresenter
{
private IStatisticsView view;
private Statistics statsModel;
public StatisticsViewPresenter(IStatisticsView view, Statistics statsModel)
{
this.view = v...
Chor asked 14/8, 2009 at 16:14
6
Solved
I am starting with C# programming, I have a scenario, where I create a windows form application. I have created a button inside the form and double click it to generate its associated click functio...
Venu asked 12/7, 2017 at 11:52
2
Solved
So, I'm in awkward situation - I wanted to create Windows Form App using Visual Studio, but I can't find any place to create Visual C++ Windows Form template. I tried even to reinstall Visual C++, ...
Gluey asked 26/6, 2017 at 21:50
7
We have a form and textboxes in it. All of control's tabindex are set correctly and TabStop = true.
When some textbox is focused and when I press tab, focus is not set on next textbox.
Note : Con...
Mintz asked 6/6, 2011 at 15:58
2
I have inherited ControlDesigner class into MyControlDesigner.
In this class I need to obtain objects behind ITypeDescriptorContext and IServiceProvider interfaces, but I don't know how :(
I need...
Mancunian asked 26/1, 2011 at 23:40
1
Solved
I'm following this C# article to learn how to create an ActionList and Action Items, however the article is only focused to action items of type DesignerActionPropertyItem...
I would like to creat...
Anatomist asked 13/4, 2017 at 18:37
2
Solved
I cannot find a way to make scale the image in a Windows Form Button. See below what it looks like with the Windows Form designer shown on DPI 200% (I am aware that the Windows Form designer should...
Bergren asked 12/11, 2014 at 10:17
1
Solved
I have created a custom control and component as like the below code,
public class CustomComponent : Component
{
private string style;
public CustomControl Control { get; set; }
public string S...
Tumefacient asked 1/3, 2017 at 12:50
3
Solved
My project has no errors, I'm able to run it via F5, but I can't look at my "main"
form, as the [Design] tab tells me, "To prevent possible data loss before loading
the designer, the following er...
Arable asked 6/7, 2012 at 17:12
0
I am trying to get the Script node block of ASP page and modify it dynamically, through code implementation. In order to do that I have a custom wizard (Component Designer) which I am opening from ...
Harlequinade asked 16/1, 2017 at 14:34
5
Solved
how to add the checkbox to the datagridview from coding in windows form.
i have a datatable with one column as value=true;
and in another datatable i had settings for that column as value='Checkbo...
Carmen asked 17/6, 2010 at 11:10
5
Solved
I am building a Windows form application and I have a text box for searching purposes.
I would like to put a search icon inside the text box, at the right or left
like this:
I would prefer at ...
Truckage asked 8/8, 2014 at 10:8
4
Solved
In my code, i create a label with the following:
Label namelabel = new Label();
namelabel.Location = new Point(13, 13);
namelabel.Text = name;
this.Controls.Add(namelabel);
The string called nam...
Trophoplasm asked 18/7, 2012 at 22:7
3
Solved
There are two forms. Form2 is derived from Form1.
But I have an issue with Form2 in design mode as shown on the screenshot below.
If I will comment this this._presenter.Retrive(); it will work fine...
Rime asked 2/1, 2016 at 15:42
2
Solved
I'm working on a Windows Forms project in Visual Studio 2012.
In the solution of the project, I created a new Folder named userControls and added to it a user-control (UserControl1).
Here is the tr...
Newmann asked 4/10, 2016 at 11:14
2
Solved
I want to use a Web Browser to access a website that uses JavaScript on load. I understand that Web Browser is a wrapper of the current installed version of Internet Explorer. However, testing the ...
Rank asked 5/8, 2014 at 15:25
3
Solved
I have an application that I run on the command prompt as follows:
C:\some_location> "myapplication.exe" headerfile.h
I want to create a Windows Forms application where the user can specify t...
Guenna asked 24/7, 2012 at 17:7
1
Solved
In one of my projects I'm using an abstract UserControl. To be able to design this control in Visual Studio I'm using the code proposed in this answer. Now I want to use this with another abstract ...
Protoxide asked 8/7, 2016 at 8:49
2
Solved
I can't figure out how to move a row of the TableLayoutPanel in the Designer. How do you do that?
I cannot drag them, there are no buttons to move them up or down and moving all the controls from ...
Vaudeville asked 24/10, 2012 at 10:55
1
Solved
Short description:
I have a UserControl with a DataGridView on it. I
want to expose the DataGridView Columns collection to the designer, so
I can change the columns on my User Control at de...
Menton asked 22/4, 2016 at 7:17
1
Solved
I wrote a custom collection editor for a WinForms control. Its core code looks like this:
internal class MyCollectionEditor : CollectionEditor
{
public MyCollectionEditor(Type type) : base(type...
Discontinue asked 15/4, 2016 at 14:29
© 2022 - 2024 — McMap. All rights reserved.