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

TabCard event when a user has the intent to change tab

Probably a simple one but a cannot figure out the correct event: I have a vb.net WinForm with a TabControl. On every TabPage, the user can enter/modify some data and then (hopefully) save it. To keep things clean, I want to check, if there is…
Luke P
  • 73
  • 6
0
votes
0 answers

How to reset a TabPage's header title?

I have a TabControl with five Tabs and DrawMode set to OwnerDrawFixed. What I actually try to do is to change the font color of the last tab header from black to blue. The following code that handles the DrawItem-Event works fine and shows the also…
Pete Hilde
  • 659
  • 1
  • 10
  • 24
0
votes
1 answer

set tab pages on left side of tab continer in asp.net 4.0

I want to ask you about tab containers. Is there any way to set tab pages vertically on left side of tab container. some kind of vertical tab... Example tabheader tabheader (active tab) --- content
serim urhan
  • 139
  • 2
  • 10
  • 21
0
votes
1 answer

change Text of several labels located on a Tab control using loop in C#

I have a windows form project ( Net 4) in C#, and I want to change all of my label.Texts in a loop. but my labels are in a Tabcontrol (in tabpage 4) and i don't know what to do. my labels name are label1 label2 and so.. until label 100.
Roya Nd
  • 3
  • 1
0
votes
1 answer

WPF TabControl acceleration keys with WebBrowser control

I've a WPF TabControl with acceleration keys set - so user can switch to any Tab by hitting A, B, C and D (without pressing Alt!). Third Tab contains WebBrowser and if user type in the field of this web browser any letter which coincide with Tab's…
0
votes
1 answer

Looping through tabpages of tabcontrol in c#

I am trying to Loop through the tabpages of a tabcontrol in c#. Each tabpage has multiple textboxes. The purpose is to sum up all of the values of these textboxes. double sum = 0; foreach(TabPage tbp in tabControl1.TabPages) { …
user9010288
0
votes
1 answer

PowerShell WPF dynamically render close tabs button

I'm trying to create a RDP manager for myself. Since a RDP manager adds and closes tabs dynamically during the use I need this to work properly in WPF. If I add a function (method) to the button, inside the tabitem template, it works perfectly fine…
jr13216
  • 3
  • 4
0
votes
2 answers

SketchFlow / Using (Selected) TabItem in TabControl to Trigger State

Context: A new Sketchflow / Silverlight project. Expression Blend 4 (Ultimate) I have the below code. I have a TabControl with 2 TabItem's. I also have 2 "callout" (big bubble things) as quick visual on the state change. I created a…
granadaCoder
  • 26,328
  • 10
  • 113
  • 146
0
votes
2 answers

vb.net 2008/2010 tabcontrol and code

I am looking for a way to be able to use the tab control on my main form and transfer all 3 other forms onto that main form that has the tab control. Problem being is that some functions are named the same in each of the septate forms i want to…
StealthRT
  • 10,108
  • 40
  • 183
  • 342
0
votes
1 answer

How do I change the MouseOver property on a TabControl?

So I would like to disable the IsMouseOver effect that happends when you move your mouse over the control. This is what it looks like https://i.imgur.com/P22YCLD.gifv How do I properly disable it? XAML
Melissa
  • 27
  • 3
0
votes
1 answer

how stretch user control in tab control item

Hi I try solve how stretch user control width / height which is active in tab control to tab control width / height. I use caliburn micro. I create some user control. Here is it:
user572844
0
votes
1 answer

how to refresh the tabcontrol in silverlight, i tried everything i can think of, but it is stubborn

here are the codes, i would like that the tabcontrol allow the change in the datagrid to be displayed/but it doesnot work. note without this tabcontrol datagrid displayed the change on view/delete NOTE please study the tab "VIEW/DELETE DATA" when…
user287745
  • 3,071
  • 10
  • 56
  • 99
0
votes
1 answer

Tabcontrol and Text Placement using VB.net Form

I am trying to build out an application that has tabs on the left, but I want the text to be horizontal and not vertical. I have seen many forum posts for WPF and C#, but nothing specific to VB.net. Is there a specific property I can use to have…
John D
  • 139
  • 13
0
votes
1 answer

Binding wrapped viewmodels to TabControl

I've been trying to auto-populate my TabControl, and have been looking at this question, though it doesn't quite cover wrapped VMs and I can't figure it out. My MainViewModel public class MainActionViewModel : ViewModelBase { private readonly…
Hank
  • 2,456
  • 3
  • 35
  • 83
0
votes
1 answer

Use 2 ObservableCollection to fill TabControl : one for items, one for Content

In my ViewModel, I have 2 ObservableCollection of different types (ListeEquipements and ListeTypeEquipements). What I try to do is using my first collection to create Items of my Tabcontrol, and fill each tab content with properties of my second…
hervai
  • 11
  • 2