こんにちは私は現代のUIをWPF用に使用していますが、他のページ(ユーザーコントロール)へのリンクとしてアイテムを含むページがあります。私は、エラーIO例外でリソース 'basicpage1.xaml'を見つけることができません
System.IO.IO例外が、私は多くのことを探索したがなし希望を持っているリソース「basicpage1.xaml」
を見つけることができません持っています。あなたがソースに/Pages
を追加する必要がありますので
<UserControl x:Class="ModernUINavigationApp.Pages.ListPage1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mui="http://firstfloorsoftware.com/ModernUI"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid Style="{StaticResource ContentRoot}">
<mui:ModernTab Layout="List" >
<mui:ModernTab.Links>
<!-- TODO: set @Source -->
<mui:Link DisplayName="Item 1" Source="/basicpage1.xaml"/>
<mui:Link DisplayName="Item 2" />
</mui:ModernTab.Links>
</mui:ModernTab>
</Grid>
</UserControl>
、運対application.xamlのフルパスプロパティを比較する。 –
あなたは明らかに間違って何かをやっているので、私のためだけで正常に動作します。 – mm8