WPF - Getting a Frame control to scroll the content
-
I have a Frame control inside a main WPF page. The frame shows other WPF pages. For some reason, the frame clips the content without scrolling. I've tried embedding the frame in other controls, but no luck. Has anyone dealt with this issue? Thanks! Evan
-
I have a Frame control inside a main WPF page. The frame shows other WPF pages. For some reason, the frame clips the content without scrolling. I've tried embedding the frame in other controls, but no luck. Has anyone dealt with this issue? Thanks! Evan
Evan Stein wrote:
I've tried embedding the frame in other controls
Sorry, but what does this mean? You mean like wrapping your pages in a scrollviewer control?
Why is common sense not common? Never argue with an idiot. They will drag you down to their level where they are an expert. Sometimes it takes a lot of work to be lazy Individuality is fine, as long as we do it together - F. Burns
-
Evan Stein wrote:
I've tried embedding the frame in other controls
Sorry, but what does this mean? You mean like wrapping your pages in a scrollviewer control?
Why is common sense not common? Never argue with an idiot. They will drag you down to their level where they are an expert. Sometimes it takes a lot of work to be lazy Individuality is fine, as long as we do it together - F. Burns
I mean, nesting the Frame as a child control, like so
<ScrollViewer>
<Frame/>
</ScrollViewer>As I said, this doesn't seem to help.
-
I mean, nesting the Frame as a child control, like so
<ScrollViewer>
<Frame/>
</ScrollViewer>As I said, this doesn't seem to help.
I would think that you would want to do this
<Frame>
<ScrollViewer>
<Page/>
</ScrollViewer>
</>FrameAfter all you want the pages to scroll not the frame right?
Why is common sense not common? Never argue with an idiot. They will drag you down to their level where they are an expert. Sometimes it takes a lot of work to be lazy Individuality is fine, as long as we do it together - F. Burns