バージョン

CancelCommand フィールド

印刷操作をキャンセルします。
シンタックス
'宣言
 
Public Shared CancelCommand As RoutedUICommand
public static RoutedUICommand CancelCommand
使用例
<Style TargetType="{x:Type igRep:ProgressWindow}">
    
<Setter Property="Template">
        
<Setter.Value>
            
<ControlTemplate TargetType="{x:Type igRep:ProgressWindow}">
                
<StackPanel HorizontalAlignment="Stretch">
                    
<Label  x:Name="PART_Description" Height="20" Margin="10,0,0,0"  Padding="0" Content="Progress Information "/>
                    
<ProgressBar x:Name="PART_ProgresBar" Margin="10,0,0,0" Height="20" />
                    
<Button Margin="0,5,0,0"  Width="75" HorizontalAlignment="Right"
                        
Command="{x:Static igRep:ProgressWindow.CancelCommand}" Content="Cancel"/>

                
</StackPanel>
            
</ControlTemplate>
        
</Setter.Value>
    
</Setter>
</Style>
参照