The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
40 views

How to get the header of the selected item in a TabControl template?

I'm trying to get the header of the selected item in the template of my TabControl but I cannot do it. I tried several solutions but none of them works : No result : <ContentPresenter ...
1
vote
1answer
40 views

Not visible TabItems if TabControl-Items are located left

I have an application with a TabControl on it. The TabItems for this TabControl are created dynamically while the application is running. The xaml-code to create the TabControl is: <TabControl ...
0
votes
1answer
185 views

WPF Custom TabItem with Close Button

I'm using WPF and C#. I am trying to create a custom TabItem which contains a close button. I did follow a tutorial and managed to get it working - however I wanted to use Images for my close buttons. ...
2
votes
0answers
126 views

mahapps metro tabcontrol as prism region style

I have problem with prism and mahapps.metro library. I set TabControl as my region in my Shell and here i have problem beacouse every tabitem(module) not react on Triggers for example: ...
0
votes
1answer
29 views

How to apply Control resource on a Control using code

I have created a Control resource for a TabItem in the XAML file. I an generating TabItems dynamically and i want to apply that Control Resource to each and every TabItem that gets generated .How to ...
1
vote
2answers
69 views

Visual Tree Finder is returning null while searching for Data Grid

I have Tab Control which has many tab items, I am checking Data Grid Items Count while closing tab items. For the first time it works fine(I mean in first iteration). After closing one tab item, in ...
0
votes
2answers
108 views

wpf tabitem with image

I need to use, with a stile of mahapps.metro, the tabitem with a text and an image.. this is my code: <TabItem Style="{StaticResource gMetroTabItem}"> <TabItem.Header> ...
2
votes
1answer
51 views

Trigger for IsMouseOver on TabItem ContenTemplate

I have a problem with a TabItem Style and maybe someone of you can help me. Following the Style at issue: <Style x:Key="ChildrenTabItemStyle" TargetType="TabItem"> ...
0
votes
0answers
70 views

C# WPF XBAP Elements can go out of tabitem

I have grid inside a tabitem. The grid can have from one to n elements, all of the same type as in the picture. Now, I've been playing with this for a loong time and searching for answers, but ...
0
votes
0answers
116 views

WPF Tab Item trigger not working while the focus is in wep page

In WPF a 'Tab Control' is having two 'TabItems'. Second tab item is having a WebBrowser control to display a web page. In second tab item, Clicking inside the web page/scrolling down the web page and ...
0
votes
3answers
227 views

Why is the first item of a ComboBox is selected after switch to another TabItem?

I have a TabControl with three TabItems. In each of the TabItems is one ComboBox. If I switch through the TabItems the first entry of the ComboBoxes is selected. But I want that nothing is selected. ...
1
vote
0answers
104 views

Can't see TabItem content in Expression Blend

So here is my problem. I have a WPF application basically composed of a TabControl with many TabItems. I have each TabItem declared in separated classes, and what I do is insert them into the ...
0
votes
1answer
438 views

WPF TabControl Items Add MVVM

I have a WPF TabControl like this one: XAML: <TabControl Name="myTabControl" ItemsSource="{Binding Main.TabItems, UpdateSourceTrigger=PropertyChanged}" /> Now I want to add TabItems at ...
0
votes
0answers
98 views

Making a tooltip for the tabitem header using resources and keyboard shortcuts

I'm trying to conciliate a couple of things in a WPF application and I can get them to work separately, but not together. I have a Tabcontrol with several Tabitems, and since I want my app to support ...
0
votes
1answer
49 views

Removing a runtime's created TabItem by name

I have a TabControl in my app. Based on the selected checkboxes, I create a TabItem at runtime. When a checkbox is unchecked, that TabItem must be removed. Now, my problem is, I need just to remove ...
1
vote
1answer
435 views

Change TabItem.Header, when selected, from image to text

I have bumped into a problem to which I am seeking the solution. I have a tabControl with styles added to it. I want to display only images on each TabItem.Header and when that tab is selected then ...
0
votes
0answers
83 views

The MainWindow shows “An unhandeled exceptions has occured” while loading a Usercontrol into a TabItem

In my WPF application each TabItem loads different UserControl.In design view of MainWindow while loading a UserControl into a TabItem it shows An unhandeled exception has occured like the image ...
1
vote
2answers
130 views

What's the easiest way to clone a TabItem in WPF?

I have the need to clone all of the contents of a tab to reflect the current state of a WPF TabItem, fully preserving all the bindings. The requirement is that each Tab should function independently ...
0
votes
1answer
182 views

How to disable the WPF tabItem Background when mouseOver

I already set the background and the border of the tabitem to transparent.However, when my mouse is over the tabitem, the background of the tabItem will turn to grey color. Does anyone how to disable ...
2
votes
2answers
87 views

I have used a resource dictionary for adding a little green square

I have added a resource dictionary for my tabcontrol to use. Each tabitem has a little box on the right which is defined in the resource dictionary. I would like ...
2
votes
1answer
127 views

Dragging over a tab to bring to front

I'm dragging data from outside my application onto a TabControl. I'd like to be able to drag over a "tab" and have that tab brought to the front. The drag events on the TabControl and the TabItems ...
1
vote
0answers
95 views

Insert the Name of a BindingSource into a String?

I want to use a DataTemplate to change the Header of some TabItems. So far I have this Code, which works fine: <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
0answers
56 views

how to get and set the values of a tabitem dynamiccaly

I have a tabcontrol with various tabitems on it. Depending on a value in the database, these tabitems need to be visible/invisible. to work with these tabs i use an Enum that looks like the following: ...
1
vote
4answers
168 views

set header of tabitem based on content in wpf

Initially I thought that it will be a very trivial functionality but now I am not able to implement it. My requirement is simple. I am programmatically setting the content of a TabItem. The content ...
-3
votes
1answer
109 views

TabItem for many different TabControl

I have many project in my solution. In a lot of project i have one TabControl. On of my project is a dll. How to create a tabItem in dll, for adding dynamicly in TabControl of other projet ?
0
votes
1answer
139 views

TabItem headers not responding to mouse, only on text

I have a WPF TabControl with four TabItems and applied a custom Style to both the TabControl and the TabItems as follows: <Style TargetType="TabControl" x:Key="TabControlStyle"> <Setter ...
1
vote
3answers
87 views

How to TabBarController display differents Itens?

On my firstViewController I have a tabbar that contains my firstViewController and a helpViewController. When I click on a button from the FirstViewController, I push a NewViewController. But, when ...
0
votes
0answers
234 views

Deleting all tabitems in tabcontrol in WPF is not working correctly?

I am learning WPF and I have the following nested tabControl window All the children TabItem's are added when Add New [Alpha | Beta | Gamma | Omega] is clicked..Each TabItem header is a Button ...
0
votes
0answers
67 views

Hierarchical TabControl

I would realize a sort of "Hierarchical TabControl" in which there are TabItems as root and all their related children (shown always as TabItem). I have to realize that using WPF, so I try to write a ...
0
votes
1answer
294 views

How to hide the title of a tab of a LayoutPanel / LayoutDocument?

Good morning everyone! I'm using the AvalonDock on a project, and I ended having a question: In some pages developed in my project, I have custom titles which use a standard textBlock. And in some ...
1
vote
0answers
208 views

Preview of TabItem not showing correctly when TabItem is not visible

I have a TabControl and I want a preview window just like the taskbar in Windows 7. When I hoover the mouse over tabItem1, I get the result that I want. When I select the 2nd or 3rd tab (the content ...
0
votes
2answers
459 views

How do I get a DataGrid to fill a TabItem

I have the following layout <DockPanel> <StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Margin="10"> ... </StackPanel> <TabControl> ...
0
votes
1answer
500 views

Template for TabItem

I've a TabItem, i want to define a Template for it, without make a different xaml file, because i want only change the color gradient when a tab is selected.. I try to put this in the ...
0
votes
2answers
627 views

Add Tab Dynamically Into A tabControl based on Selected item from ListBox

I am working on MVVM sample app. I have 2 projects inside my solution in VSC# 2010. In one project (main project) I have a mainwindow.xaml which has two grids, one located on right side and other on ...
0
votes
2answers
230 views

DataGrid inside TabItem event handling

I have a TabControl with two TabItems, inside the one TabItem I have a DataGrid. I'm trying to handle the TabItem click, and it works, but, when I click in one row of the "dataGrid1" the event ...
1
vote
1answer
2k views

Binding to ItemsSource of TabControl in WPF

I am in a bind (no pun intended) when it comes to my current binding needs in WPF. I have spent the better part of the day trying to research my problem and I cannot find a solid solution to my ...
1
vote
0answers
95 views

Scrollviewer inside tabItem using WPF Prism

I am using wpf Prism Controller to add multiple tabs to my view in wpf. But sometimes when my view is large i want a scrollviewer in my tab item that can scoll horizontally. How can i acieve this?
1
vote
1answer
155 views

Remove emboss style on a disabled TabItem

I've got the following TabItem (by saying "TabItem", I actually mean the button to activate the Tab): <TabItem RequestBringIntoView="activateTab_Click" Name="tabImplantation" Width="270" ...
1
vote
2answers
352 views

Assign tab content in WPF to a page

I am trying to add dynamic tabs to my application. Right now if I click a button, it will open a new page. What I want is to open this page in a new tab. But when I set up the tab content to a page , ...
0
votes
0answers
62 views

Localization of TabItem

I want to localize my UI using MarkupExtension like in Christian Mosers Wpf Tutorial. For any labels or Buttons on my user controls this works pretty good. My UI consists of TabControls, where each ...
0
votes
1answer
418 views

How to get total number of rows in swt.table

What i want to do is to get all the tableItems from the selected row. but i have find out that the tableItems are stored in indexes (like in arrary) and not like give row and column and store it on ...
0
votes
1answer
82 views

iOS: Increasing contrast on Tab items

It is difficult to see my tab item images and text with the dark blue background I am using as you can see in this image. Is there a way to make them more bright when not selected?
0
votes
1answer
154 views

Josh Smith's MVVM Tabs get unselected

I have an MVVM application using tabs like Josh Smith's example. Each TabItem (View) represents an individual ViewModel. On some Views there are DataGrids that are bound to ObservableCollections. So ...
0
votes
1answer
905 views

how to add close button with swt.TabItem?

TabFolder tabFolder = new TabFolder(composite, SWT.CLOSE); TabItem tab1 = new TabItem(tabFolder, SWT.CLOSE); tab1.setText("Tab 1"); TabItem tab2 = new TabItem(tabFolder, SWT.CLOSE); ...
0
votes
2answers
648 views

Select tabItem programmatically when selecting an element in silverlight

I have an image editor which has a number of image elements and text elements on a canvas. I have two separate tabs which allow the user to re-size the text or image. I'd like to switch to the text ...
0
votes
1answer
107 views

notification code for mouse over a tab item

I have a tab control created by CreateWindowEx(NULL, WC_TABCONTROL,...). I would like to have a notification when a mouse is over a tab item. The tab control has the style TCS_TOOLTIPS and when the ...
0
votes
3answers
3k views

Dynamic TabControl in WPF MVVM

I started using WPF (in C#) some weeks ago and now i need help for some advanced use of tabcontrol. Fisrt of all, I'm using a MVVM (Model View ViewModel) pattern for designing my application, and I ...
2
votes
2answers
210 views

New TabItem at run time

Hi I am using TabControl to make Conference System, the private chats would be in a new TabItem. I am using this code to present a new member chatting in private: TabItem ti = new TabItem(); ...
0
votes
6answers
633 views

Collection was modified; enumeration operation may not execute

I have multiple TabItems in my TabControl; tabItem1, tabItem2, tabItem3...these are CloseableTabItem. If I add a node in tabItem1 and press a button to make a subGraph model for this node, the ...
-2
votes
1answer
79 views

Adding tabItems-.Header to a List<T>

I have multiple TabItems in my TabControl; tabItem1, tabItem2, tabItem3...these are CloseableTabItem. if all tabitems are aktive, how can i add the tabItem.Header to a List<string>?

1 2 3 4