author | cavaliet |
Fri, 25 Sep 2009 18:28:58 +0200 | |
changeset 124 | 14b058fc64fc |
parent 102 | e1f7c03c2dde |
child 174 | 45c9e55fcf23 |
permissions | -rw-r--r-- |
35 | 1 |
<UserControl |
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
6 |
mc:Ignorable="d" |
|
7 |
xmlns:FingersDance_Control_Player="clr-namespace:FingersDance.Control.Player;assembly=FingersDance.Control.Player" |
|
8 |
xmlns:FingersDance_Control_TimeLine="clr-namespace:FingersDance.Control.TimeLine;assembly=FingersDance.Control.TimeLine" |
|
9 |
x:Class="FingersDance.Control.SyncSource.UserControlSyncSource" |
|
10 |
x:Name="UserControl" Height="384" Width="512"> |
|
11 |
||
45
f003ae353cd7
Dev des 4 User Panels Resizables avec un pivot basique.
sarias
parents:
35
diff
changeset
|
12 |
<Grid x:Name="LayoutRoot" Height="{Binding Path=ActualHeight, ElementName=UserControl, Mode=Default}" Width="{Binding Path=ActualWidth, ElementName=UserControl, Mode=Default}"> |
69 | 13 |
<Grid VerticalAlignment="Top" Height="100" x:Name="GridTimeLine"> |
124 | 14 |
<FingersDance_Control_TimeLine:UserControlTimeLine Margin="0,0,60,0" x:Name="UCTimeLine" DragStarted="UserControlTimeLine_DragStarted" DragCompleted="UserControlTimeLine_DragCompleted" TimerTick="UserControlTimeLine_TimerTick" d:LayoutOverrides="Height" Background="{x:Null}" /> |
45
f003ae353cd7
Dev des 4 User Panels Resizables avec un pivot basique.
sarias
parents:
35
diff
changeset
|
15 |
</Grid> |
52 | 16 |
<Grid HorizontalAlignment="Stretch" Width="Auto" Height="Auto" VerticalAlignment="Stretch" x:Name="GridPlayer" Margin="0,54,0,0"> |
45
f003ae353cd7
Dev des 4 User Panels Resizables avec un pivot basique.
sarias
parents:
35
diff
changeset
|
17 |
<FingersDance_Control_Player:UserControlPlayer PlayerOpened="UserControlPlayer_PlayerOpened" x:Name="UserControlPlayer" VerticalAlignment="Stretch" d:LayoutOverrides="GridBox" Width="{Binding Path=ActualWidth, ElementName=GridPlayer, Mode=Default}" Margin="0,0,0,0" Height="{Binding Path=ActualHeight, ElementName=GridPlayer, Mode=Default}" /> |
f003ae353cd7
Dev des 4 User Panels Resizables avec un pivot basique.
sarias
parents:
35
diff
changeset
|
18 |
</Grid> |
35 | 19 |
</Grid> |
20 |
</UserControl> |