In my Windows phone7 application I load some data from a XML feed. Some of them are links to Web pages. I used textblocks to display data. In my previous LINK I found how to open web page in HyperlinkButton.
But I cant use that way because HyperLinkButton doesn't have TextWrapping property and those links are lengthy. I need to show entire link and once user click the link, need to access the corresponding web page.
It would be great if someone can Suggest a way to achieve this. Thanks inadvance
While there could be a way around showing the entire link, lemme ask you this .. do you want to? How about just saying "Click 'here' ..." or something & let the user tap on it for navigation?
Please see some of the design guidelines for using the HyperLinkButton here.
Hope this helps!
Related
I am working on project where I want to paste data from clipboard to last focused webpage's text control(like text box for username or password).
The web page will be opened in Chrome\FF\Safari Web Browser.
This all task will be done on click of "Paste" button in my application.
I have handle of last used application including web Browser (Other than my application).
So can any one help me on this?
Sorry for bad English.
if any more information expected please comment.
Thank you in advance.
You first have to "activate" the target window, in order to really have a focused text box.
See that answer in order to do that.
Then, you'll have to fake a "Paste" keyboard command using SendInput.
Can I convert an image or text into a link to navigate to another page in the same project in C#? If so, please let me know. I can't seem to figure out how to do it.
Regards.
Can't you just make an image or a text field and do a click command on it?
Then in the click command open the corresponding page.
Wpf support NavigationService, which can be used for navigating between pages
but I never use it, generally MVVM pattern is best way to do that, you can find example project here
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
So I want to make a htmlpage in a xaml-window. I searched the net, but the only thing I found was how to edit the text, but not how it is shown in the page. I want to create (or use, if it already exists) a toolbox for html. and i want to put this in a xaml-window so I can edit the output of a piece of html code. In the toolbox may be for example: inputfield,image, table
anyone who knows how to do this?
Correct me if I am wrong, if you want to render a HTML page in WPF application, you can use WPF WebBrowser Control.
First of all be specific weather you are working on wpf or silverlight... I don't know much about wpf, but for silverlight try this.. http://forums.silverlight.net/forums/p/13910/157537.aspx
I am making an ASP.NET application. I have a page which displays a list of data [as a GridView].
I need to display a list of objects [as a GridView] in a new view over the current view, not a new window but a kind of AJAX popup, so that the context shiftes on the page to the new view/form!!
Shall i use Modal Window for this? If so, how shall I do it, as the function to open the modal shall be fired when an item of the GridView is selected?
Is there any plugin which can simplify my task?
You could always try the ASP.net Ajax Control Toolkit
http://www.asp.net/ajax/ajaxcontroltoolkit/samples/modalpopup/modalpopup.aspx
It supported by the ASP.net team and it's really easy to use!
There is a good plugin called blockUI for jQuery that will let you achieve this quite easily.
You can use it to show any HTML that you desire or even load an iFrame using that. You can download this plugin and find examples here
http://jquery.malsup.com/block/
If you post some sample code I can probably help you create your modal pop up!
Please do vote up my answer or mark the checkbox next to it, if I helped you at all. Thanks :)