«expression-blend» 태그된 질문

9
WPF가 현재 디자인 모드에서 실행 중인지 확인하는 방법이 있습니까?
코드가 현재 디자인 모드 (예 : Blend 또는 Visual Studio)에서 실행 중인지 확인할 수 있도록 사용 가능한 전역 상태 변수를 아는 사람이 있습니까? 다음과 같이 보일 것입니다 : //pseudo code: if (Application.Current.ExecutingStatus == ExecutingStatus.DesignMode) { ... } 내가 필요한 이유는 : Expression Blend에서 응용 프로그램이 디자인 모드로 표시 될 때 …
147 c#  wpf  expression-blend 

10
스타일 설정 기에서 블렌드 비헤이비어를 추가하는 방법
Button에 대한 Blend 동작을 만들었습니다. 앱의 모든 버튼에 어떻게 설정할 수 있습니까? <Button ...> <i:Interaction.Behaviors> <local:MyBehavior /> </i:Interaction.Behaviors> </Button> 그러나 내가 시도 할 때 : <Style> <Setter Property="i:Interaction.Behaviors"> <Setter.Value> <local:MyBehavior /> </Setter.Value> </Setter> </Style> 오류가 발생합니다 "Behaviors"속성에 액세스 할 수있는 setter가 없습니다.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.