client/src/Iri.Modernisation.Controls/View/NavigationBar/PersonnalChutier.xaml.cs
author totetm <>
Fri, 12 Feb 2010 12:24:46 +0100
changeset 45 de06fa7242ae
parent 0 249d70e7b32d
permissions -rw-r--r--
Fixed| agrandir la zonne d'affichage de la time line quand la taille des bloques d'annotations sont supèrieur a sa hauteur Fixed| faire fonctionner le bouton collapse des zonnes d'affichage des timeline

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Windows.Data;
using Iri.Modernisation.BaseMVVM.Commands;
namespace Iri.Modernisation.Controls.View
{
    public partial class PersonnalChutier : UserControl
    {
        public PersonnalChutier()
        {
            InitializeComponent();
        }

        private void SearchAnnotedBox_KeyUp(object sender, KeyEventArgs e)
        {
            BindingExpression be = SearchAnnotedBox.GetBindingExpression(TextBox.TextProperty);
            be.UpdateSource();
            Commands.PersonnalChutier.Search.Execute();
        }
    }
}