1
vote
3answers
36 views
Remove TabPage: Dispose or Clear or both??
I am working on a windows form that has a TabControl named tabDocuments. I came across this piece of code that removes all pages from the TabControl.
for (int i = tabDocuments.Tab …
1
vote
6answers
1k views
Customizing a TabControl for the Closing of Individual Tabs
My scenario is the following:
I am working on a winforms application in C# that has a button inside the main page of a tabcontrol that will generate another tabpage each time that …
0
votes
1answer
16 views
WPF TabControl add extra tabs to a bound control
Hello,
I have a Tab Control with a ItemsSource Binding.
...
I want to add a predefined tab to the front called All that has an aggregate of all the other tabs, and I would als …
0
votes
4answers
92 views
Multi-tab application (C#)
Hi,
I'm creating a multi-tabbed .NET application that allows the user to dynamically add and remove tabs at runtime. When a new tab is added, a control is added to it (as a child) …
0
votes
6answers
79 views
Loop through controls in TabControl
I am looking for a way to loop through controls on a particular tab of a tabcontrol. For example, I have a tabcontrol with the following tabs:
Cars,
Pets,
Admin
On each of these …
0
votes
1answer
660 views
select tabItem programmatically in WPF
Hi
I have different tabItems in a TabControl
and each tabItem has some input fields.
I am moving between the tabItems programmatically (like a wizard to move from the first to th …
0
votes
1answer
34 views
WPF TabItem Header Images
I've got a TabControl in WPF with 3 tabs, and each tab has an image next to the title of the tab. Here's an example
<TabItem>
<TabItem.Header>
…
1
vote
3answers
56 views
I have a focus problem in C# GUI with tabs
I have a focus problem in C# GUI with tabs.
I start a process based on an event with the users focus on a tab, and then run the process.
The process repaints the the entire GUI -- …
1
vote
4answers
446 views
WPF: hiding a tab item in a tab control thats bound to an observable collection
Heya
I have a tab control bound to an observablecollection for dynamic tabs as follows:
<TabControl ItemsSource="{Binding AllTabs}" SelectedIndex="{Binding SelectedItem, Mode= …
0
votes
3answers
61 views
Show controls on multiple pages of a tab control in the designer
I want to use a tab control to switch between sets of data displayed in a DataGridView (currently I'm using radio buttons). At runtime I can just move controls from one tab to the …
0
votes
1answer
108 views
Remove a TabPage
I am using C# 2005 to create a Windows application. I have a MDIForm (frmMainMenu) which contains a Menustrip and a
TabControl. My ChildForm is frmPurchaseEntry. When the user cl …
1
vote
1answer
43 views
Silverlight TabControl Inheritance Fails in Expression Blend.
I create a basic TemplatedControl via Visual Studio. I then inherit TabControl instead of Control. It technically works (ie passes compile) but inside Expression Blend 3, I get an …
0
votes
1answer
285 views
Embedded Form in TabControl Strangeness
I have a tab control where each tab page has a form embedded into it. One of the Forms has a Tab Control on it with 3 tab pages. I am trying to change the order of the tabs on th …
0
votes
0answers
32 views
Problems with tabcontrol (Silverlight 3) with MediaElement
Hello,
I have tab control. Every tab item contains MediaElement. User can download media into them independently. I notice that every time when I toggle between tabs the according …
0
votes
3answers
364 views
multiple userControl instances in tabControl
I have a tabControl that is bound to an observable collection.
In the headerTemplate, I would like to bind to a string property, and in the contentTemplate I have placed a user-co …
