Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
Currently,I am using MahApps.Metro Combo Box and Can i split event of Combo box click event and toggle button click? Like this=>
Please Check Image Here
My requirement is when i click Click 1,I don't want to show drop down list and just do click event.
But when i click Click 2,I just want to show drop down list and not trigger click event.
How can i achieve this? Thanks.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 days ago.
Improve this question
enter image description hereenter image description here
I have two radio button decimal and hexadecimal and a textbox
When selecting decimal radio button textbox input restrict to decimal when selecting radio button of hexadecimal then textbox restricting to hexadecimal and when switching between radio button the input in textbox should convert decimal to hexadecimal and wise versa
attached the pictures
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am making a WindowsFormsApplication in C# and I want to make a list that looks like that:
# Item Edit Delete
1 Item1 [E] [X]
2 Item2 [E] [X]
3 Item3 [E] [X]
and I want to make [E] and [X] to be clickable buttons. How to do that? I'm relatively new to this so please be gentle
Hugo is correct DataGridView will do it.
If you look at the Columns property you can define the column types, the default is for text but there is a button type too.
When the click event is triggered you can check the selected row/column properties to deduce which button was clicked.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
How can I add a border with title to a panel using c# like this:
see this pic.
Open the toolbox
Select the GroupBox control and drag it onto your form
Set the groupbox Text property to the desired caption
Drag other controls inside the groupbox
What you looking for is called GroupBox
For more information about GroupBox refer to this link.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to see a TextBox value only for a TextBox when moving through the sql table items
But when I click on the Add new button the TextBox must be editable for the new item
Just change the TextBox property ReadOnly to false in the click button.
I think that if you add a event to add on the bindingnavigator you can change ReadOnly property of the textbox
In the button OnClick action change the TextBox property ReadOnly into false. And return it back to true when another condition is satisfied (of your choice).
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
So I am making a webbrowser. I made my own address bar usercontrol, it is in the same solution as the main window. This is what I want to happen.
I have an event called getcurrentbrowser() in the MainWindowClass,
But I need it to be called from the Addressbar class,
And then change the webbrowser's source in the Addressbar class,
And this command is launched by an image.
I think you should add a property like Source to MainWindowsClass and another to AddressBar Control.
Then Bind Source Property of WebBrowser and AddresssBar to MainWindowClass.Source Property with Mode=TwoWay