0
Fluent Ribbon (fluent.codeplex.com)을 사용합니다. 4 개의 버튼을 나란히 배열하고 싶습니다. 나는 다음과 같은 코드를 사용합니다이미지가 버튼에 표시되지 않습니다.
<Fluent:RibbonGroupBox Header="Some Header">
<Fluent:RibbonToolBar>
<Fluent:RibbonToolBar.LayoutDefinitions>
<Fluent:RibbonToolBarLayoutDefinition Size="Small">
<Fluent:RibbonToolBarRow>
<Fluent:RibbonToolBarControlGroupDefinition>
<Fluent:RibbonToolBarControlDefinition Target="buttonFirst" />
<Fluent:RibbonToolBarControlDefinition Target="buttonPrevious" />
<Fluent:RibbonToolBarControlDefinition Target="buttonNext" />
<Fluent:RibbonToolBarControlDefinition Target="buttonLast" />
</Fluent:RibbonToolBarControlGroupDefinition>
</Fluent:RibbonToolBarRow>
</Fluent:RibbonToolBarLayoutDefinition>
</Fluent:RibbonToolBar.LayoutDefinitions>
<Fluent:Button Size="Small" Icon="/WpfApplication1;component/Resources/First_16.png" x:Name="buttonFirst" />
<Fluent:Button Size="Small" Icon="/WpfApplication1;component/Resources/Previous_16.png" x:Name="buttonPrevious" />
<Fluent:Button Size="Small" Icon="/WpfApplication1;component/Resources/Next_16.png" x:Name="buttonNext" />
<Fluent:Button Size="Small" Icon="/WpfApplication1;component/Resources/Last_16.png" x:Name="buttonLast" />
</Fluent:RibbonToolBar>
</Fluent:RibbonGroupBox>
버튼이 올바르게 정렬을하지만, 버튼 이미지가 없습니다. 문제가 어디에 있습니까? 재 구축이 지속적으로을에 당신이 많이 있고 원하지 않는 경우 '항상. 또는에 작성된'을. 나는 보통 사용 설정 "출력 디렉토리에 복사 '변경해야하는 경우에
이미지의 리소스 유형을 '리소스'로 설정 했습니까? – Zak
예, 리소스 유형이 '리소스'로 설정되었습니다. – David
동일한 문제가 있습니다. 리소스를 어떻게 설정합니까? 내 이미지의 유형을'Resource'로 바꾸시겠습니까? – CrApHeR