VS Team System
Visual Studio
Visual C#
Smart Device
VS Express Editions
Visual J#
Visual C++
Visual Basic
Architecture
Windows Vista
.NET Development
Visual FoxPro
Microsoft ISV
Windows Forms
Game Technologies
Software Development Network>> Visual Studio>> Crashes VS when using <Frame> tag
Crashes VS when using <Frame> tag
Hot Topic
BamlParseException was unhandled
Is there an April CTP?
Multiple Listeners
Visual Studio Tools fo office
Reportviewer Paper size
How to Create VSS Labels using MSBuild?
Source control.... repository design
Error: "data\rights.dat is already open"
Problem with the VS SDK March 2006
VsWebSite Documentation
Visual Studio
applying smart indentation rules
Trust Warning
Reading Excel From C#
Functions
Random behaviour with ITaskItem[]
alternating table row colour
Mark changes in Excel
VS 2k5 Cleanup Errors
error message in crystal report windows forms viewer
how to add shapes to canvas
Crashes VS when using <Frame> tag
Visual Studio 2005 crashes when I go to the designer after having added a Frame-tag with a Source set to an other XAML. Not sure if same would happen with a html-page.
Answer this question
Crashes VS when using <Frame> tag
roacha76
<Window x:Class="TestUX.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="TestUX" Height="567" Width="835"
Initialized="Init"
Loaded="Load"
>
<!-- Command bidings -->
<Window.CommandBindings>
<CommandBinding Command="Copy" Executed="Copy" />
</Window.CommandBindings>
<!-- Root node -->
<DockPanel>
<!-- Some stuff removed here -->
<Frame Name="mainFrame" Source="Page1.xaml" NavigationUIVisibility="Visible">
<Frame.LayoutTransform>
<ScaleTransform ScaleX="2" ScaleY="2" />
</Frame.LayoutTransform>
</Frame>
</DockPanel>
</Window>
And here is Page1.xaml:
<Page x:Class="TestUX.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Page1"
ClipToBounds="True"
ShowsNavigationUI="False"
>
<StackPanel>
<TextBlock>
Go to <Hyperlink NavigateUri="Page2.xaml">Page 2</Hyperlink>
</TextBlock>
<Button Content="OK" />
</StackPanel>
</Page>
BennTech
Can you post a XAML snippet that we can use to reproduce this - thanks - mark
Crashes VS when using <Frame> tag
Answer this question
Crashes VS when using <Frame> tag
roacha76
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="TestUX" Height="567" Width="835"
Initialized="Init"
Loaded="Load"
>
<!-- Command bidings -->
<Window.CommandBindings>
<CommandBinding Command="Copy" Executed="Copy" />
</Window.CommandBindings>
<!-- Root node -->
<DockPanel>
<!-- Some stuff removed here -->
<Frame Name="mainFrame" Source="Page1.xaml" NavigationUIVisibility="Visible">
<Frame.LayoutTransform>
<ScaleTransform ScaleX="2" ScaleY="2" />
</Frame.LayoutTransform>
</Frame>
</DockPanel>
</Window>
And here is Page1.xaml:
<Page x:Class="TestUX.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Page1"
ClipToBounds="True"
ShowsNavigationUI="False"
>
<StackPanel>
<TextBlock>
Go to <Hyperlink NavigateUri="Page2.xaml">Page 2</Hyperlink>
</TextBlock>
<Button Content="OK" />
</StackPanel>
</Page>
BennTech