如何使用Width
和Height
單擊圖片時使圖像更大。c#中的點擊改變邊框內的圖像的大小
我的按鈕XAML代碼是這樣的:
<Button x:Name="Input2" Grid.Row="0" MouseEnter="Input2_MouseEnter" MouseLeave="Input2_MouseLeave" Click="Input2_Click" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="{x:Null}">
<Button.Template>
<ControlTemplate>
<Border HorizontalAlignment="Center" VerticalAlignment="Center" >
<Image Source= "C:\input.png"
Width="40"
Height="40"/>
</Border>
</ControlTemplate>
</Button.Template>
</Button>
Input2.Height
- 更改按鈕的大小,而不是裏面的圖像。
我的C#代碼:
private void Input2_Click(object sender, RoutedEventArgs e)
{
// What to do here?
}
如何將大小重置?或者你想在第一次點擊後保留調整大小的圖像?您可能需要的是Button的IsPressed屬性上的觸發器。 – Clemens
@Clemens我會重置它,我只需要知道如何更改大小... –