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
1 answer

How to create a TabControl Silverlight

Look: TabControl def:
Daniel Gomez Rico
  • 15,026
  • 20
  • 92
  • 162
0
votes
1 answer

WinForms on Tabpage selected run method in UserControl

My Tabcontrol has 3 Tabpages. I am currently in Tabpage 1, when I would select Tabpage 2. I want to run a method in my UserControl assigned to that Tabpage. You could call this a "Focus" listener. How would I implement this? Or is this possible at…
Roy Berris
  • 1,502
  • 1
  • 17
  • 40
0
votes
1 answer

How to hide the dots in FMX TabControl?

I do not want to show the dots in a TabControl interface, when I change the properties of TabControl, TabPosition: Dots ... I just want to handle it with gestures.
ErnestoCC
  • 9
  • 4
0
votes
2 answers

Show TextBox on every TabPage

I attached a TextBox to the first TabPage of a TabControl. I would like to display the same TextBox object on every TabPage. I tried to add the control to the tabControl Collection but unfortunately it's not working. private void Form1_Load(object…
br0ken.pipe
  • 850
  • 3
  • 17
  • 32
0
votes
0 answers

Tab Control Freezes after Interacting with Current Tab

I have three tabs in my tab control that I can click through freely and everything works as planned. However, the second I interact with the current tab, the next couple tab changes locks up the tab control to the point where I cannot change a tab…
Michael Gulik
  • 141
  • 11
0
votes
1 answer

Open new Tabs on a UserControl while checking the Checkboxes on a ViewModel

I am trying to make a program in MVVM which can read Excel files and generate the content into a Word file. Now I am stuck at making new Tabs on a UserControl, every time someone chooses to create a Word file on the checkbox: It should generate a…
kYA
  • 5
  • 4
0
votes
0 answers

C# windows forms TabControl

I have a Windows forms application with a TabControl with 2 tabs. tab1 does some calculations and tab2 has a chart that graphs updated values from tab1. The issue is that I cannot click tab2 while tab1 processing are running. I want to be able to…
justin
  • 159
  • 3
  • 14
0
votes
1 answer

C# TabControl.SelectedIndex changes value unexpectedly

I have a method called OpenURL() and recordHistory() with the following definitions: public string OpenURL(string url) { //get index of current tab int tabIndex = BrowserWindow.TabControlE.SelectedIndex; //create instance of…
Arjun
  • 817
  • 3
  • 16
  • 28
0
votes
0 answers

How to fold and expand wpf Tabitem

I have a requirement to create Wpf tabcontrol with several tabItems. Now this tabitems are aligned in horizontal and it occupy as two rows. I want it in one row with fold and expand facility.Can anyone help?
bibin
  • 5
  • 3
0
votes
1 answer

WPF MVVMLight TabControl SelectedIndex doesn't change TabItem

I have many TabItem in my TabControl. I'm binding my TabControl with SelectedIndex property : ... ... I want to come back…
Speed Neo
  • 57
  • 6
0
votes
1 answer

How to change the DXTabControl Background Color at WPF?

I have a DXTabControl at WPF C# and I want to change the Background Color of the DXTabControl. How can I do that? XAML CODE
Barsblue
  • 109
  • 1
  • 15
0
votes
1 answer

How to set Ellipse style trigger on TabControl to highlight when DataGrids has selection

I have an Ellipse in each TabControl header which is to highlight blue if there is any items selected in the DataGrid below it, otherwise it should be Transparent. At the moment I have the Trigger in reverse so if the DataGrid SelectedItems.Count is…
Hank
  • 2,456
  • 3
  • 35
  • 83
0
votes
1 answer

How to add controls inside WPF TabControl via XAML

I have the following XAML, a TabControl which binds to an ObservableCollection and creates my tabs just fine.
Hank
  • 2,456
  • 3
  • 35
  • 83
0
votes
1 answer

comboBox with data from database and DataGrid in tabControl (xaml wpf C# Oracle DB)

I have comboBox with data from database and DataGrid in tabControl. Everything working. I select something in comboBox_1 on tabItem_1 (DataGrid_1 show table from DB for my choice value for ComboBox_1) and switch to tabItem_2 and select something in…
Adam G.
  • 81
  • 1
  • 10
0
votes
1 answer

Change the background color of a tab control

How would I go about to change the full background color of a tabcontrol (ownerdrawfixed / flatbutton appearance)? Not just the top part, but the whole background? I'm using C# WinForms. Font fntTab; Brush bshBack; Brush bshFore; …