Tagged Questions
2
votes
1answer
36 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
27 views
Can't catch error: (404) Not Found in my WPF/MVVM Light windows application
In my WPF/MVVM Light windows application I need to access a specific page of our company web site and display the results in a frame. This works - however in the case where the web site is down or the ...
0
votes
1answer
193 views
How to maximize WPF UserControl to the width of Frame?
I have a Window with a Stack Panel and Frame. The Stack Panel holding my menus. On selecting menus, am loading my UserControls within the Frame.
But problem is the UserControl is displaying in the ...
0
votes
1answer
65 views
Dispatcher not making a new thread
First, sorry for my english.
I'm making a WPF/C# application, with a Frame and pages.
When I try to change quickly the page displayed, by 4 or 5 times, the program starts to freeze and I need to ...
1
vote
1answer
80 views
How do i get a page instance from a frame?
I have a frame that i initialized in xaml like this:
<window>
<Frame Name="myframe" NavigationUIVisibility="Hidden" Source="mypage.xaml"/>
</window>
I'm trying to get the page ...
0
votes
1answer
31 views
Frame Not Drawn on Customized Window
I have a customized window which implements corporate design guideline from my company.
I have to load HTML in Frame object in WPF. The problem is that when I place Frame with source html path in ...
0
votes
1answer
190 views
Adding a Scroll Bar to a Frame WPF
One of the pages I load into my frame is considerably larger than the frame itself. I have tried the instructions found at Frame on a resizable Window should show Scrollbar and my resulting xaml ...
0
votes
1answer
154 views
Is there a way for a WPF page to keep its style when in a Frame?
I have a WPF page that I've styled like this:
When I set the source to the WPF page, it looks like it loads. However, the hatched background style disappears.
The button is just a test on the ...
0
votes
1answer
214 views
WPF Frame control , how to use it with usercontrols?
I need to build some kind of phone emulator to test our webservice and have a general idea how the flow will go.
Doesn't needs to be anything fancy.
Now I made a WPF form with a phone image in it. In ...
0
votes
0answers
89 views
WPF Frame doesn't get drawn out of Window
I have two frames inside a grid like so:
<Grid x:Name="SlideGrid" VerticalAlignment="Stretch" Width="{Binding ActualWidth, ElementName=MainGrid, Converter={StaticResource DoubleConverter}}" ...
0
votes
1answer
145 views
WPF application with a scrollbar in frame
I'm making a WPF application but i just can't get the scrollbar working
this is my Xaml from the mainpage:
<Border Name="myBorder_FrameRight" BorderBrush="#FF3F0000" BorderThickness="2" ...
1
vote
0answers
119 views
Layout of Controls inside a frame
As you can see I am loading pages inside a frame, but the problem is the layout doesn't apply correctly.
Edit: I Mean if windows size will be smaller than page it will controls will go off screen... i ...
-1
votes
1answer
643 views
WPF get current frame
I'm making a WPF application with in the mainpage a Frame and some buttons.
If i press Button1 my frame navigates to Page1,
Page1 vPage1 = new Page1();
Frame.Content = vPage1;
If i press ...
0
votes
0answers
308 views
how to navigate directly to one of the loaded pages into WPF frame control
I am working on an Accounting application using WPF and C#.
I am trying to use traditional built-in TabControl to navigate through pages loaded into farme element.
I have a frame control called ...
0
votes
1answer
137 views
Frame needs to load a website before page is shown
I have the following simple program that switches the context of a frame back and forth between two different pages. The first page is just a picture and loads fine, but the second page is a frame ...
0
votes
0answers
103 views
Getting a WPF Frame to use Windows Security
I'm trying to put a frame in my program and have it access a website that is requiring window's security:
I'd be okay with entering the password when that window of my program loads, but it simply ...
0
votes
0answers
110 views
Dragging and dropping a row from DataGrid to a Frame/StackPanel
I have a DataGrid that contains a single text column and there is a Frame next to it. This is the XAML:
<DataGrid AutoGenerateColumns="False" Height="330" MouseMove="Row_Move" ...
2
votes
0answers
136 views
Viewport2DVisual3D Frame created is not visible
Hi all i have a frame code as such
<Frame Name="wow" Width="1200" Height="600" ></Frame>
When i click on a button, it loads it with a url as such
wow.Source=(new ...
1
vote
1answer
408 views
WPF: Loading another Page into current Page frame with its back end coding
I have a simple program. it has a basic canvas with a button and a FRAME.
<Canvas Width="1200" Height="600" Name="frontPanel" Background="Blue">
<Button Width="200" ...
0
votes
2answers
153 views
Frame ViewModel
I would like information on how to load a Frame through a viewmodel. I know how to load through the code-behind, but now want to move everything to the ViewModel linking frame.content or other ...
0
votes
1answer
212 views
c# wpf frame redirect send additional information
I have a default overview.xaml loaded into a frame with a listview and I want to redirect to a details page of the item that I double clicked.
But how can I teach the details page which item has been ...
2
votes
2answers
397 views
C# WPF Data exchange between Page in a Frame and MainWindow
In my MainWindow.xaml i have the following code:
<Frame Name="FrmView" Source="Overview.xaml" NavigationUIVisibility="Hidden" />
In Overview.xaml.cs now i want to acces an ...
0
votes
1answer
183 views
Capture Source change for Back/Forward buttons in a Frame
I've used some code I have found (which works great) to use the Navigating event on a WebBrowser to that I can create and use Back and Forward buttons.
Problem is that I am having to change to a ...
1
vote
2answers
490 views
How to create my own window frame in WPF?
I want to remove the standard window frame and put my own one with my own buttons. How can I do this?
Something like this (just a sample, you get the idea).
1
vote
0answers
389 views
Frame navigation - DataContext not inherited
I have a XAML file representing the main window of a WPF application.
Now I want this window to display content that is specified by another XAML file.
This works, but the DataContext is lost in the ...
0
votes
1answer
977 views
navigation in frame by changing the source through WPF view model
I am new to WPF and MVVM. I have Frame in mainWindowView in my WPF application. I have bind the source of frame to SourcePage property of view model:
<Frame Name="frame" Content="Frame" ...
0
votes
2answers
175 views
Making a frame part of the Selected Item in a Listbox, similar to the PowerPoint slide selector
I'm making a program similar to powerpoint, for changing some slides that display production data. I'm working on the slide selector part that usually appears on the left side of the screen. You ...
0
votes
2answers
2k views
WPF child page get parent frame
I have a parent frame Frame1 that opens a page Page1. From Page1 I want to click a button and direct Frame1 to open a new page Page2. Is this navigation method feasible? Thanks
1
vote
1answer
241 views
WPF/C#: Frame - how can I get notice of a new html page being loaded in?
I have a frame in a WPF window that I'm using to load an html help file for viewing - it's on a network drive. In my html file, there are links to other html files in the same directory. When I load ...
0
votes
1answer
210 views
WPF Frame Content Producing Audible Click (And I Don't Want the Click)
C# WPF .NET 4.0.
When assigning the frame content, an audible click is produced (like an unhandled event click). I don't want the audible click.
To be clear new Page1() does not produce the ...
0
votes
1answer
476 views
How can I parse query string in WPF?
hi I have wpf application. I created a pop up that act as container of pages being called.
the pop up has frame in which I just assign source for it to load. My prob is that I need to pass a query so ...
1
vote
2answers
968 views
How to update Source property of a frame by clicking only one button from user control?
I’d like to find out about how to update a source property by clicking only one "Next" button based on a click count and being able to load different pages into frame each time the button is clicked ...
0
votes
1answer
440 views
How to add Title to the Navigation Bar in a WPF Frame control
I want to use a Frame control with a navigation bar that has NavigationUIVisibility="Visible".
I would like to be able to customize the Navigation Bar by adding a title, and possibly by changing its ...
1
vote
2answers
769 views
WPF Frame Uri does not work when calling as project reference
I have a simple frame in my WPF project in VS2010. The Uri is called in codebehind with:
Dim U As New Uri("Pages/PageTranslate.xaml", UriKind.Relative)
Now I am using this project as reference in ...
0
votes
1answer
794 views
WPF Calling function in Page from “Master” Window
I have a button in a Window that needs to call a function in pages contained within a frame. The page inside the frame will change based on a navigation contained in the main Window, so I will know ...
1
vote
2answers
2k views
show a page inside a window in XAML
I have a tabcontrol in my window, inside each tabitem I want to have a different page.
I can achieve this by making a Frame inside the TabItem and in the behind code use for example:
frame1.Content = ...
1
vote
2answers
730 views
Why does WPF lack HTML support?
Why does WPF lack HTML support? I know there is the Frame. But that shouldn't even be considered a WPF control (not, at least, when it is rendering HTML). I know there is a hack with a floating ...
2
votes
3answers
5k views
2-Way databinding with Entity Framework and WPF DataGrid , is Possible?
i am working on POS application using SQL CE , WPF , Entity framework 3.5sp2 and iam trying to use data grid as my Order Entry Control for User to enter Products Order .
Iam plannning to bind ...
3
votes
1answer
1k views
Turn off navigation page sound in WPF Frame control
I have a Frame element in a WPF window and all content in my application is loaded by using Frame.Navigate(). However, when navigating to a new page, there is that sound that is played by default, ...
1
vote
1answer
483 views
WPF: Opening 2 pages at one Window at the same time
I have a problem loading two pages at the same time in one window.
Here's the scenario. I have a MainWindow.xaml and I have two page files which are LeftPage.xaml and RightPage.xaml. I used frame ...
0
votes
1answer
311 views
Why is my WPF Frame not rendering anything? Known bug?
I have a WPF Frame with a web-based HTML source and though the contents are there, they aren't showing up. I know that the content is there because if I right click in just the right spot I can save ...
0
votes
1answer
771 views
WPF: InkCanvas + Frame
I need to draw over the html page. Page displayed in a Frame element.
The problem is that InkCanvas does not work with Frame.
I tried to insert TextBlock instead of Frame - painting works.
Does not ...
3
votes
2answers
5k views
WPF: Page to page navigation from listbox menu employing frame technique?
I got a problem. I added a frame in the window xaml to load pages in. I can directly load a page into frame with Source tag of the frame. It works. I need to use the code in C# to refer to the link ...
0
votes
2answers
3k views
Automatically Size WPF Frame Object inside TabItem/StackPanel
I want the Frame Control to automatically resize to fill the screen inside my TabItem. Is the following code it renders a very small frame. I would rather not set static heigh and width. Here is ...
1
vote
2answers
832 views
Frame vs WebBrowser
If all I'm trying to do is display the contents of some web page in a WPF app, what are the pro's and cons of using the WebBrowser control versus the Frame control? As I understand it Frame wraps ...
2
votes
1answer
547 views
What is the best way to integrate Prism region management with WPF's Navigation Services?
I have a Prism (CAL) shell with defined regions. Each region is responsible for its Navigation Journal and some regions will inherit from the parent.
The issue is that you cannot define Prism ...
0
votes
1answer
139 views
How to Stop Frame Clipping
I have a Page built in xBap with a frame, and another page in the frame
How can I take out a control from the inner page outside of a frame in visual,
in other words, I want to stop clipping for the ...
0
votes
1answer
424 views
WPF Application hosting a HTML page, the flash is disabled, how to enable?
I have made a small application where the user can browse to a web page, im using a "Frame" for the purpose and passes a URL to it, it then renders the destination page as HTMl. The page im trying to ...
3
votes
3answers
2k views
Can you use data binding with the Content property of a WPF Frame?
I can use data binding to set the initial Content of a WPF Frame, but subsequent changes to the the bound property (implemented using INotifyPropertyChange) do not seem to change the content.
Also, ...
7
votes
1answer
3k views
WPF frame source questions
I've created a WPF application with a frame inside. I can attach some other pages to this frame like
frame1.Source = new Uri("Page1.xaml", UriKind.RelativeOrAbsolute);
The question is after loading ...



