Rectangle mouse down preview : Rectangle « Windows Presentation Foundation « C# / C Sharp






Rectangle mouse down preview

Rectangle mouse down preview
  


<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="WpfApplication1.Window1"
    Title="Routed Events" Height="400" Width="800">
  
    <Grid Name="contentGrid" Background="Red">
        <Rectangle Name="clickMeRectangle" 
                   Height="70" 
                   Width="70" 
                   Stroke="Black" 
                   PreviewMouseDown="Generic_MouseDown" 
                   Fill="CadetBlue" />
        <Button Name="clickMeButton" 
                Height="23" 
                HorizontalAlignment="Right" 
                VerticalAlignment="Top" 
                Width="70" 
                Click="clickMeButton_Click">Click Me</Button>
        <TextBlock Name="outputText" />
    </Grid>
</Window>

//File:Window.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WpfApplication1
{
    public partial class Window1 : Window
    {
        private void Generic_MouseDown(object sender, MouseButtonEventArgs e)
        {
            Console.WriteLine(outputText.Text);
            Console.WriteLine(e.RoutedEvent.Name);
            Console.WriteLine(sender.ToString());
            Console.WriteLine(((FrameworkElement)e.Source).Name);
        }

        private void Window_MouseUp(object sender, MouseButtonEventArgs e)
        {
            outputText.Text = outputText.Text;
        }

        private void clickMeButton_Click(object sender, RoutedEventArgs e)
        {
            outputText.Text = "Button clicked:" + outputText.Text;
        }
    }
}

   
    
  








Related examples in the same category

1.A rectangle with curved cornersA rectangle with curved corners
2.Paints a rectangle with a grid pattern with VisualBrushPaints a rectangle with a grid pattern with VisualBrush
3.Paints a rectangle with a checkered pattern.Paints a rectangle with a checkered pattern.
4.Paints a rectangle with a grid patternPaints a rectangle with a grid pattern
5.Two of the drawing's rectangles are painted with an ImageBrush, creating a checkered pattern of imagesTwo of the drawing's rectangles are painted with an ImageBrush, creating a checkered pattern of images
6.Fill rectangle with Rectangle.Fill tag and LinearGradientBrushFill rectangle with Rectangle.Fill tag and LinearGradientBrush
7.Pulsating RectanglePulsating Rectangle
8.Rectangle Geometry DemoRectangle Geometry Demo
9.Rounded Rectangle Corner radius of 5Rounded Rectangle Corner radius of 5
10.Rounded Rectangle Corner radius of 10 (X) and 25 (Y)Rounded Rectangle Corner radius of 10 (X) and 25 (Y)
11.Rounded Rectangle Corner radius of 100 (X) and 60 (Y)Rounded Rectangle Corner radius of 100 (X) and 60 (Y)
12.A rectangle with a rotate transformationA rectangle with a rotate transformation
13.Trigger animation with Rectangle.MouseEnterTrigger animation with Rectangle.MouseEnter
14.Trigger animation with Rectangle.MouseLeaveTrigger animation with Rectangle.MouseLeave
15.Rectangle.Fill with ImageBrush
16.Adding Rectangle to StackPanelAdding Rectangle to StackPanel
17.Create rectangles in WPF.Create rectangles in WPF.
18.Rectangle mouse down eventRectangle mouse down event
19.Change HeightChange Height
20.Change MinHeightChange MinHeight
21.Change MaxHeightChange MaxHeight