While Clicking on that textbox panel will activated but it is showing like not in top or front of the screen.
give any solution thanks in advance
Where is your Code, post the code to find the solution.
Related
How do I put a control on the Forms "label area" like google chrome's tabControl?
(source: sftcdn.net)
Check this link out, might help you out.
Close button in tabControl
Favored solution found here:
http://www.codeproject.com/Articles/12323/A-TabControl-with-tab-page-closing-capability
I want to do this correctly instead of a hack, so help is appreciated
I am starting a very basic project, using a DevExpress NavBar control in a WinForms project, in C#. Easy enough.
NavBar is in the left part of a splitter, and I want the right part of the splitter to change based on what item you have clicked on in the nav bar. You know, one second its a grid, then next it's a calendar.
I could screw around with hiding and showing windows, but I know that's not right.
Just using a tabbed control seems real close, except I don't need the tabs, the nav bar is where the user picks what he wants to see.
So would I use panels in some way? Some type of modified tab control? Do i just pile on top of one another my various pages of controls for each nav option? So many pieces, doesn't seem to be any clear documentation on how to accomplish this very simple problem... after an hour of digging, thought I would ask.
Thanks.
So would I use panels in some way? Some type of modified tab control?
You can use tab control in other way. Just hide the XtraTabControl headers via the XtraTabControl.ShowTabHeaders option.
You can create a user control for each view that a NavBar button would invoke. When the user clicks the button you dynamically generate that view and add to the right part of the splitter. What ever user control was there before you dispose of.
This will keep your app very light when executing and make it composable.
My asp.net web application is written in C#.
On many websites, I have seen small hyperlinks next to a form field that says "what's this?"
When you click it, a small help dialogue box pops up and continues to be visible so long as you hold your mouse over the link. It's usually a dialogue explaining what that part of the form is asking for.
How do I do this?
I think you are looking for a tooltip plugIn. have a look at
30 stylish jQuery Tooltip plugins or
take a look at dr. Google
Personally I've been using qTip. There are some nice examples at qTip which should help you out!
As #uwe Keim pointed out, some of the links above are outdated. So here we are with some current links
QTip2
SimpleTip
30 cool jQuery ToolTip Plugins (14.July 2012)
Tipped
You can do this either asp.net way or using jquery
http://weblogs.asp.net/sukumarraju/archive/2009/12/22/user-friendly-tooltip-using-ajax-hover-menu-extender-control.aspx
http://weblogs.asp.net/cjdevos/archive/2008/03/29/asp-net-ajax-tooltipextender.aspx
You can use jquery to accomplish this .
http://speckyboy.com/2009/09/16/25-useful-jquery-tooltip-plugins-and-tutorials/
Also have a look at the Ajac control toolkit ballon popup:
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/BalloonPopup/BalloonPopupExtender.aspx
Being horrible at the design end, I tried creating the above code and it looked horrible. I still did not figure out how to create the tabbed look and move between screens.
Any leads or help with this would appreciated... I am not looking for the entire work, but just how do I create that white space when a tab is selected with the options in them.
Any other information required, I would be happy to reply.
Thank you
PS: The problem is solved...thank you
Why don't you use Tab Control of Windows Forms? Do you need to create it yourself?
http://msdn.microsoft.com/en-us/library/4akwf92a.aspx
In my application I have a tab menu which I created using css. Whenever the user moves the cursor on the tab he should be shown a tooltip for that tab. Is there any solution for this using JQuery or any other concept?
Thank you
jQuery SimpleTip plugin might be interesting.