0
내 프로젝트에서 실버 라이트 xaml 파일에 대한 참조가 있습니다. 내가이 프로젝트를 빌드 할 때 오류 여기Silverlight XAML 파일 오류 : "여백"멤버가 인식되지 않거나 액세스 할 수 없습니다.
The member "Margin" is not recognized or is not accessible.
다음 던졌습니다 내 코드입니다 :
<UserControl x:Class="DBServer.Selenium.Silvernium.ReferenceApplication.SilverlightFixture"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">
<navigation:Frame x:Name="frameContent" Source="/MainPage.xaml" Margin="0,0,0,0"/>
</UserControl>
아무런 문제가 보이지 않습니다. 어쩌면 네비게이션 컨트롤을 제거하고 해결책을 찾을 수 있습니다. 그런 다음 다시 추가하여 컴파일하십시오. 나는 다른 오류가 마진의 오류를 만드는 것 같아요. –