client/src/Iri.Modernisation.Controls/View/ProductionEditor/ProductionEditor.xaml.cs
author totetm <>
Thu, 11 Feb 2010 17:29:23 +0100
changeset 42 594fdedecf7f
parent 14 a48c44bc825b
permissions -rw-r--r--
Fixed| bouton close sur BookTimeLine Fixed| loading blocker sur les éléments du corpus vidéolivre (book a charger) Fixed| afficher l'état sur on load et loader sur les éléments du corpus vidéolivre ("book a charger") Fixed| bug du title sur book timline Fixed| Actualisation de l'affichage des annotations sur seek de la timline sans play Fixed| Seek possible quand play Fixed| Bug sur le placement tetris ? Fixed| texte par default sur les champs d'annotations
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     1
using System;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     2
using System.Collections.Generic;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     3
using System.Linq;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     4
using System.Net;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     5
using System.Windows;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     6
using System.Windows.Controls;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     7
using System.Windows.Documents;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     8
using System.Windows.Input;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     9
using System.Windows.Media;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    10
using System.Windows.Media.Animation;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    11
using System.Windows.Shapes;
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    12
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    13
namespace Iri.Modernisation.Controls.View
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    14
{
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    15
    public partial class ProductionEditor : UserControl
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    16
    {
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    17
        public ProductionEditor()
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    18
        {
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    19
            InitializeComponent();
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    20
        }
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    21
    }
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    22
}