SQL Tutorial - SQL Query Reference
Příspěvky odeslané z IP adresy 193.148.46.–
Vlado
Vlado
#1 Jan
using System;
using System.Collections.Generic;
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;
namespace WPF1
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
Brush org_farba;
void tlacidlo_MouseEnter(object sender, MouseEventArgs e)
{
org_farba = this.tlacidlo.Background;
this.tlacidlo.Background = new SolidColorBrush(Color.FromRgb(255, 255, 255));
}
void tlacidlo_MouseLeave(object sender, MouseEventArgs e)
{
this.tlacidlo.Background = org_farba;
}
}
}