client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProduction.xaml.cs
author totetm <>
Thu, 04 Feb 2010 16:38:04 +0100
changeset 38 bd33267300aa
parent 36 b6df6fce6e5d
permissions -rw-r--r--
- FranceCulture Project - Ldt and Iri Parse Method - Bug MenuableUserControl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     1
using System;
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     2
using System.Windows;
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     3
using System.Windows.Controls;
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     4
using System.Windows.Documents;
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     5
using System.Windows.Ink;
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     6
using System.Windows.Input;
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     7
using System.Windows.Media;
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     8
using System.Windows.Media.Animation;
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     9
using System.Windows.Shapes;
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    10
using Iri.Modernisation.BaseMVVM.Commands;
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    11
using Iri.Modernisation.Controls.ViewModel;
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    12
using Iri.Modernisation.Data.Models;
24
c031f1132dde Update ProductionView
Matthieu Totet
parents: 19
diff changeset
    13
using System.Globalization;
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    14
namespace Iri.Modernisation.Controls.View
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    15
{
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    16
	public partial class HeaderProduction : UserControl
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    17
	{
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    18
		public HeaderProduction()
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    19
		{
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    20
			// Required to initialize variables
24
c031f1132dde Update ProductionView
Matthieu Totet
parents: 19
diff changeset
    21
            
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    22
			InitializeComponent();
19
7d044e7562ea Update ProductionView
Matthieu Totet
parents: 18
diff changeset
    23
          
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    24
        }
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    25
36
b6df6fce6e5d Sync init XML download.
totetm <>
parents: 27
diff changeset
    26
     
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    27
	}
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    28
    public class HeaderProductionEventArgs : EventArgs
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    29
    {
36
b6df6fce6e5d Sync init XML download.
totetm <>
parents: 27
diff changeset
    30
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    31
        public bool IsIndexPart;
18
66911d0f0eb6 Update ProductionView
Matthieu Totet
parents: 17
diff changeset
    32
        public HeaderProductionEventArgs()
66911d0f0eb6 Update ProductionView
Matthieu Totet
parents: 17
diff changeset
    33
        {
66911d0f0eb6 Update ProductionView
Matthieu Totet
parents: 17
diff changeset
    34
        }
36
b6df6fce6e5d Sync init XML download.
totetm <>
parents: 27
diff changeset
    35
        public HeaderProductionEventArgs(bool isIndexpPrt)
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    36
        {
36
b6df6fce6e5d Sync init XML download.
totetm <>
parents: 27
diff changeset
    37
          
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    38
            IsIndexPart = isIndexpPrt;
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    39
        }
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    40
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 0
diff changeset
    41
    }
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    42
}