Questions tagged [tabcontrol]

A tab control is a control in graphical user interface which contains multiple tab items that share the same space on the screen.

A tab control is useful for minimizing screen space usage while allowing an application to expose a large amount of data. It enables a developer to arrange visual content in a compacted and organized form.

References:

2206 questions
0
votes
0 answers

Not close float window when change tab item

Currently, I develop a WPF application containing a TabControl to allow the access to each plugin. Each plugin uses AvalonDock and has different windows which can be docked, floated or hidden. When I float a window in the plugin1 and after I switch…
Proutatis
  • 75
  • 7
0
votes
1 answer

Winform TabControl style

I'm once again turning to you since I can't find an answer anywhere else. I have a TabControl, but I want to get rid of the ugly orange bar on top of the selected tabs. I would also like to make the tab text BOLD when selected and NORMAL when…
Patrice Cote
  • 3,572
  • 12
  • 43
  • 72
0
votes
2 answers

Clearing textboxs in tabcointrols in vb.net

I have tabcontrol of three tabs and each tabs contains textbox and i want to clear all textboxes in each tabs and a one click of button(button event or any alternate way to clear all textboxes) i have already tried many code however that only…
babin
  • 1
  • 1
0
votes
1 answer

Can I make tabs in Xcode?

I am trying to make a web browser in Xcode 3.2 and I was wondering if I could add tab capabilities to it. I am not talking about Xcode tabs in which I can show different files, but tabs for the web browser that I am making such as the ones in Safari…
0
votes
1 answer

VB.NET How to add Event Handler to ComboBoxColumn located in programmatically created controls?

I've got part of my code that creates a tab in a tabcontrol, and then fills it with a datagridview which contains a couple columns that are DataGridViewComboBoxColumn. It looks like this: Private Sub NewTabPage() Dim TabPageCount As Integer =…
0
votes
0 answers

C# WinForms TabControl: same content in each tabpage

I have a config dialog that configures two different aspects of my application. As the two set of configurations are very similar, I decided to just use one set of controls for both. However, I like the aesthetics of TabControl (I tried RadioButton,…
Imperishable Night
  • 1,503
  • 9
  • 19
0
votes
1 answer

Why wpf dynamic tabs don't show more than first header?

I want to dynamically add and remove tabs from a wpf TabControl only via databinding. Here is the example XAML:
FST
  • 1
0
votes
1 answer

Position of TextBox inside TabItem (WPF, C#)

I creating TabItems dynamically. Inside TabItem I want to add TextBox. How can I set up position of TextBox? GenerateTabControlModel gtcm = new GenerateTabControlModel(); for (int x = 0; x <= gtcm.getTabNumber();x++) { TabItem tab =…
4est
  • 3,010
  • 6
  • 41
  • 63
0
votes
1 answer

Binding Tab Item to TabControl Dynamically in MVVM Format

How to Bind Tab Items to the TabControl Dynamically and Display a RichTextBox in each tab and i want to append some data to the RichTextBox in MVVM Format.
Ajay Kumar
  • 19
  • 5
0
votes
0 answers

DevExpress WinForm TabPane Issue

I am facing a weried problem with the TabPane control of the DevExpress for WinForms. I have an outer TabControl and now i have two differnt TabPane(DevExpress Control) on two different tabs of the Outer TabControl. When I click on the First TabPane…
Awais
  • 169
  • 1
  • 2
  • 14
0
votes
1 answer

TabControl region, How to pass parameter to child region? WPF - Prism

I'm using prism regions in order to create dynamic TabControl. But I'm having a problem passing the object from TabItem (parent view) to its child regions. The below is the code I'm using to build the TabControl. Shell: xaml
IBRA
  • 1,502
  • 3
  • 24
  • 56
0
votes
2 answers

How do I prevent a tab from rendering when selected?

I would like to be able to have a user be able run through the tabs, setting focus to each one, but only when they hit enter, the tabpage will render. You would think that the paint event would be involved, but I don't know how to "cancel out" of…
KevinDeus
  • 11,988
  • 20
  • 65
  • 97
0
votes
1 answer

Clear datagridview selection when switching to one tab to another

I'm working on a WindowsForm which has a TabControl with two TabPages. And I am trying to clear datagridview selection when I click on the 2nd tab, where the datagridview is. Howerver, if I first click on the 2nd TabPage it does not work. But, if I…
Errol Chaves Moya
  • 307
  • 2
  • 5
  • 20
0
votes
0 answers

Running sub within sub (in a loop) causes textbox TabKeyBehavior to not work properly, ie = False

When dynamically creating textboxes/comboboxes on a userform, I create a combobox with information in another Excel workbook. (Not in the workbook I created the code/userform in. Nor can it be because it may change/get issued in the future & I…
0
votes
4 answers

How to clone button between tabs C# Visual Studio 2015

Example Hi! How can I clone a button on other tabs? I need the same button in many tabs, the same button with the same proprieties, same code, same events, same name, ect. "Compress file" button is going to be the same in Tab1, Tab4, Tab6 and…
1 2 3
99
100