Tagged Questions
0
votes
0answers
20 views
Animate, UIElement RenderTransform, WebBrowser in WPF
I want to RenderTransform WebBrowser in WPF. I'm able to RenderTransform WPF button.
Please check the following working, with button, code:
XAML:
<Window x:Class="WPFAnimationStyles.MoveButton"
...
1
vote
1answer
33 views
Silverlight / WPF communication
I have a WebBrowser control showing a Silverlight application. This control is in a WPF application. Obviously this is a bit of a hack to integrate Silverlight with WPF as ultimately neither one knows ...
2
votes
1answer
33 views
Correct way to set ScrollViewer (for vertical scrolling) on a WPF Frame?
does anyone know the difference between defining a vertical scrollbar on a frame like this:
<ScrollViewer Grid.Row="2" VerticalScrollBarVisibility="Auto">
<Frame ...
0
votes
0answers
16 views
winformshost webbrowser does not recognize flash object
I've to use windowsformhost to host a webbrowser control to load html pages which embed a swf file. The problem is the webbrowser control does not recognize the swf file even though the same html file ...
0
votes
0answers
60 views
WPF browser: how to wait till a page loads
I have a problem with WPF browser. i want to load a web page.
Wait for it load completely and then put few search inputs and then retrieve the result and put it in excel.
I am unable to do so, main ...
0
votes
0answers
31 views
How does one determine if ObjectForScripting has been set for a WPF WebBrowser control from javascript?
Is there a way to determine if the ObjectForScripting property of the WPF WebBrowser control has been set via javascript running in said control? Or, is there a way to determine if the ...
0
votes
0answers
48 views
WebBrowser is asking for credentials on every page
I'm using web browser control and this is constructor of the form which hosts web browser control:
string user = "xxx";
string pass = "xxx";
string authHdr = "Authorization: Basic " + ...
0
votes
0answers
42 views
Script errors while browsing websites using WebBrowser
I'm writing a simple web browser and I get some script errors the doesn't occur when I display those sites using IE9.
I know how to suppress these errors but I want to prevent them.
For example, ...
0
votes
0answers
47 views
WPF WebBrowser : How to detect hyperlinks navigation inside the same HTML file
I have a help window with back/forward buttons and webbrowser.
I am using the WebBrowser CanGoBack and CanGoForward to enable/Disable the buttons but If i am navigating between hyperlinks inside the ...
0
votes
0answers
114 views
How to capture touchdown event in C# Web Browser Control With a WPF web application running on it ? (Not HTML Document)
I have a WPF Web Application(Not WinForm) and it has a web browser control running another WPF web application on it.
WPF WEB APP contains WEB BROWSER CONTROL that contains another WPF WEB APP.
I ...
0
votes
1answer
62 views
WebBrowser does not display content correctly
I use vb.net + wpf+ System.Windows.Forms.WebBrowser to display web content on a wpf form.
This website "http://manuim.com/laisha/" does not display correctly on the control.
When I checked on ...
1
vote
1answer
108 views
Lync ContactList WPF control hotkey/shortcut key stealing key presses from WebBrowser
The Problem
Lync has some hotkeys/shortcut keys for changing the tabs in the ContactList control. These hotkeys are 'g', 's' and 'r'. When I press any of these keys whilst having a HTML input control ...
1
vote
0answers
30 views
WPF WebBrowser in Window Flash Scrollbar issue
I am hosting a flash application inside a WebBrowser inside a Window that has set width and height. The issue is there is no scrolling and half of the Flash application cannot be accessed. Is there ...
0
votes
1answer
241 views
How to print a PDF file displayed in the WPF WebBrowser control
I have a WPF application that implements a simple web browser using the standard WebBrowser control. When the user navigates to a PDF document, the document gets displayed inline in the WebBrowser ...
0
votes
0answers
68 views
How to modify c# 4.5 WPF webbrowser element before start rendering
I want to inject javascript code just below the head element
For example below code
<script src="C:\jquery-1.9.1.min.js" type="text/javascript"></script>
<script ...
0
votes
1answer
124 views
How to get the Document's Title from a Web Browser control in wpf
I have created a Web Browser control in a TabControl.I want to set the Header of the TabItem to the Document's title of the Web Browser.
I used the following code in the Navigated Event of the ...
0
votes
0answers
59 views
reference css from webbrowser string
I want to use Windows Phone 8 webbrowser.NavigateToString() function, but it does not display images from isostorage. I know I can do it if I navigate to a URL in isostorage, but I would much rather ...
0
votes
3answers
153 views
Load a web page using code behind
I have a scenario where I am scraping some values out of one of my company intranet pages. I don't plan on showing the page in my app. I just need some of the data from the web page.
But I am ...
0
votes
1answer
167 views
Touch gestures support of WinForms controls in WPF application
There are two versions of WebBrowser control (WinForms and WPF). WPF version supports touch and multitouch gestures. Does WinForms version of WebBrowser embedded in WPF application with ...
0
votes
0answers
70 views
WPF WebBrowser control in WIN8 64 bit
Trying to set the WebBrowser control to emulate IE10 on Win 8. Followed these directions: http://www.west-wind.com/weblog/posts/2011/May/21/Web-Browser-Control-Specifying-the-IE-Version but it does ...
0
votes
1answer
66 views
Regaining control of web browser control issue
I have a Windows form project(vs2010 - vb.net) were on a page load an url is loaded into a web browser control. The user then fills in around 6 pages of forms within the control. Once they get to the ...
1
vote
1answer
456 views
WPF Web Browser Control with Custom Scrollbar
I'm trying to make a custom scroll bar for Web browser Control.
I used a Scroll Bar Control for this,so i attached Scroll Bar Control to Web browser Control
use following code:
Doc = ...
0
votes
1answer
125 views
Cannot change VIDEO tag size via InvokeScript of WPF WebBrowser control
I do very simple thing: I need to change VIDEO tag size via InvokeScript of WPF WebBrowser control.
So it shows "Hello" but size doesn't changes at all.
Note: If i open this page directly it changes ...
0
votes
0answers
233 views
Open local html under WPF WebBrowser control
I have some simple html page that refers to jquery and others javascripts like:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; ...
1
vote
1answer
30 views
fire a Javasript function and receive it in WebBrowser
Is it possible (and if yes how) to fire a Javasript function and to receive it in WebBrowser?
For example:
I have a Website with Javascript and my Webbrowser source goes there.
When I am executing ...
0
votes
1answer
119 views
Concurrent Connections with WPF Browser
I'm trying to run some tests against SignalR so we can use it in our product but first it needs to pass a small load test that ive been set.
What iv done is wrote a small app that basically creates x ...
0
votes
0answers
112 views
Wrking with webBrowser control and Javascript
I have two problems, regarding working with Webbrowser. I have a list of web pages, of the same address but with changing parameter value. The page address is:
...
0
votes
1answer
102 views
Persistent Dataset for WPF Browser App?
I am on a quest to find the best method to implement this data structure in my WPF c# .NET 4.0 web application.
App Details: This application will have many users at one time. I'm working with a ...
0
votes
2answers
84 views
WebBrowser control on AllowTranspPrent form is invisible
The webBrowser on Form with "allowTransparency = true" is hidden, it's well known issue, but has anybody a solution for this problem? For example:
5
votes
1answer
373 views
Getting return value from Javascript in C# Webbrowser control WPF
I made JavaScript injection into WebBrowser control in C# (System.Windows.Controls.WebBrowser)
such that, <C#>
IHTMLDocument2 webdoc = (IHTMLDocument2)webBrowser1.Document;
string var = ...
2
votes
0answers
373 views
WPF WebBrowser Control and security message
I use the WPF WebBrowser as follow. When I use this in a new autonom Application, I became the following message at top of the browser:
on english:
showing active content that access to the ...
0
votes
1answer
312 views
Resize body of a WebBrowser as UserControl
I am developing a screen, and this screen I have a grid. Within this grid, I have a UserControl WebBrowser. I'm using this component to display XML formatted and syntax is highlighted (with color). ...
0
votes
0answers
88 views
SkewTransform webbrowser control in WPF
I skew a web browser control on my form with this code:
<Grid Width="314" Height="470" Margin="141,82,448,239" >
<Grid.LayoutTransform>
<SkewTransform ...
1
vote
0answers
119 views
WPF WebBrowser telling when user has navigated with a click of a button
I have a WebBrowser control that is pointed at a website not owned by me. It is a rather slow server and I want to display the wait cursor (mouse pointer) while waiting for page loading. If the ...
1
vote
1answer
168 views
Wpf webbrowser + ftp server
Problem:
I have wpf webbrowser controll and FTP server.
In code:
wpfWebbrowserControll.Soure = new Uri (ftpUri)
Then in wpfWebbrowserControll shown all FTP server content
But then - when i click ...
1
vote
2answers
529 views
look of webpages in awesomium
I've created a wpf web browser with awesomium but the webpages do not look as clear as they are in chrome and others.I used visual c#.can some one help me with this?
0
votes
1answer
273 views
handle web browser control event in code behind
can we handle the event inside the web browser control? in my case i am passing a radio button list to web browser control and want to handle the radio button change event in code behind, i try to ...
0
votes
0answers
147 views
web browser overlapping scrollviewer
In my project i am using web browser control inside the grid , i donot want the web browser with scroll so using scrollviewer outside the grid control, now the problem is webbrowser is not getting ...
1
vote
1answer
317 views
How do I call the click function of an HTML button using the class name of the control or its value but not the ID?
I'm creating a WPF application that opens a WebBrowser instance and get the HTML code ...
I was calling the elements by ID for example:
if the HTML is:
<input type="text" name="company" ...
0
votes
0answers
55 views
How to embedd an online shop in a native .net application
I need a very specialized Shopping Application that has access to some local ressources on the Client PC, namely a connected USB-Device. Also the features that the Shoppingsystem is quite limited.
I ...
2
votes
1answer
256 views
Include Jquery for web browser control in wpf
I am using web browser control in my project ,i can display html data easily with this control, now i am trying to include jquery in this html but any how it does not seems to be working
...
0
votes
1answer
164 views
move into next field webbrowser control
I am using a web browser control in wpf to load a web page. I need to have a wpf button which when clicked will help the user to move next input field, The web page have two text box and two radio ...
0
votes
2answers
138 views
Globally changing width of scroll bars in my application
I have a WPF application that runs on a touch screen computer. I'd like to change all of the scroll bars in the app to be much wider. Is there a way to do that globally?
0
votes
1answer
227 views
Gesture support for WPF WebBrowser Control which is displaying a HTML5 Site
In a standard WPF app, I have a WebBrowser control which has been navigated to a HTML5 sample page (http://ie.microsoft.com/testdrive/Browser/BrowserSurface/).
In the browser outside the app, I can ...
1
vote
0answers
366 views
Alternative to WPF WebBrowser control that can support ActiveX?
In my WPF application I need to host a web browser control that can support JavaScript and ActiveX.
This browser will open 3D HTML files (heavy files) based on catia model.
I need to open them in a ...
0
votes
1answer
85 views
How to get selected row of ListView in web browser control in WPF
I have a web site has a ListView and navigate it by using web browser control in WPF. I want to get selected item of ListView from web browser control. I can get selected text in web browser control ...
0
votes
1answer
136 views
wpf web browser cpu issue
I have a problem with wpf web browser control. I am doing some HTML handling using jQuery. I am using browser.InvokeScript method for invocation of the script. The script is carried out OK, with no ...
2
votes
1answer
187 views
“Ghost” ContentControl stealing focus
I have a tabbed control using a Template Selector, the correct template is selected which contains a WebBrowser component, when using the KeyBoard (Up/Down Arrows) the KeyBoardFocus toggels between ...
0
votes
1answer
244 views
Print Web browser Control in WPF
In Application window there is scroll view ,on taking the print out of the window whole scroll view didn't come ,only the window size print is coming ,I can take the print of scroll view only but is ...
0
votes
2answers
3k views
Web Browser Control in WPF
My goal is similar to this question
But still I didn't get answer to my problem
So, I need make an app with WYSIWYG HTML editing support for designing and generating report template. And like ...



