Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a TabControl there can be empty place to the right from tabs in the panel if there are not too many tabs. When a user doubleclicks in this empty space I'd like to process this event to create a new tab. How to achieve this?

share|improve this question
1  
You could add a button, anchored top-right and position it in the z-order above the TabControl. A button is way more intuitive to use. I've just removed a similar function to what you trying to do, because no one discovered it :-) – Uwe Keim Feb 13 '11 at 9:18
What happens when there are too many tabs? – Cody Gray Feb 13 '11 at 9:41
"You could add a button..." - good idea, I'll try. "no one discovered it" - may be you're right saying statistically (for me doubleclicking on empty space to create a tab was always the most natural way). "What happens when there are too many tabs?" - In my application tabs are the functionality meant (by the subject) for a very humble use, I suppose approximately 80% of users to never use tabs and approximately 95% to never use more than 6 tabs. – Ivan Feb 13 '11 at 9:56
I completely disagree that it's intuitive to click on an empty space to create something new. I've never once thought to try on my own that in any application. And I consider myself somewhat of a "power" user, for whatever that's worth. – Cody Gray Feb 13 '11 at 9:59

1 Answer

This doesn't sound like a UI concept that's intuitive to the users of your application. Why don't you add a small additional tab labelled "+". When the user clicks on that tab, the full tab is added. Firefox does it that why and it was intuitive to me from the first second.

(Sorry for not answering your double click question.)

share|improve this answer
+1 Not answering the question was the right thing to do in this case. Discoverability is extremely important in UI design, and adding a button also solves the problem of the feature disappearing when "too many" tabs are already in the control. – Cody Gray Feb 13 '11 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.