//testFiles = new string [] { @"Interfaces/Divers/welcome.crow" };
//testFiles = new string [] { @"Interfaces/TemplatedContainer/testTabView.crow" };
//testFiles = new string [] { @"Interfaces/TemplatedControl/testSpinner.crow" };
- //testFiles = new string [] { @"Interfaces/GraphicObject/testCtxMenu.crow" };
- testFiles = new string [] { @"Interfaces/TemplatedControl/testItemTemplateTag.crow" };
+ testFiles = new string [] { @"Interfaces/DragAndDrop/0.crow" };
+ //testFiles = new string [] { @"Interfaces/TemplatedControl/testItemTemplateTag.crow" };
+ testFiles = testFiles.Concat (Directory.GetFiles (@"Interfaces/DragAndDrop", "*.crow")).ToArray ();
testFiles = testFiles.Concat (Directory.GetFiles (@"Interfaces/Divers", "*.crow")).ToArray ();
testFiles = testFiles.Concat (Directory.GetFiles (@"Interfaces/GraphicObject", "*.crow")).ToArray ();
testFiles = testFiles.Concat (Directory.GetFiles (@"Interfaces/Container", "*.crow")).ToArray ();
<?xml version="1.0"?>
-<VerticalStack MinimumSize="50,50" Background="Onyx" Margin="10" Width="90%" Height="90%">
- <GraphicObject Margin="10" Width="Stretched" Height="Fit" Background="Mantis"
- MinimumSize="10,10"/>
- <GraphicObject Margin="10" Width="Stretched" Height="Fit" Background="Mantis"
- MinimumSize="10,10"/>
- <GraphicObject Margin="10" Width="Stretched" Height="Fit" Background="Mantis"
- MinimumSize="10,10"/>
-</VerticalStack>
\ No newline at end of file
+<HorizontalStack Background="Onyx" Margin="10" Width="90%" Height="90%" Spacing="100" Focusable="true">
+ <Container StartDrag="{Background=Yellow}" EndDrag="{Background=Mantis}" Focusable="true" Fit="true"
+ MouseEnter="{/txt.Foreground=Red;Background=Blue}" MouseLeave="{/txt.Foreground=White}"
+ AllowDrag="true" Width="200" Height="200" Background="Mantis">
+ <VerticalStack Margin="50">
+ <Label Name="txt" Text="Drag me" Foreground="Gray"/>
+ <Label Text="Dragged" Visible="{/IsDragged}"/>
+ </VerticalStack>
+ </Container>
+ <Container StartDrag="{Background=Yellow}" EndDrag="{Background=Mantis}" Focusable="true" Fit="true"
+ MouseEnter="{/txt.Foreground=Red}" MouseLeave="{/txt.Foreground=White}"
+ AllowDrop="true" Background="Mantis">
+ <VerticalStack Margin="50">
+ <Label Name="txt" Text="Drop here" Foreground="Gray"/>
+ <Label Text="Dragged" Visible="{/IsDragged}"/>
+ </VerticalStack>
+ </Container>
+</HorizontalStack>
\ No newline at end of file
<None Include="Interfaces\GraphicObject\testCtxMenu.crow">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
+ <None Include="Interfaces\DragAndDrop\0.crow">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </None>
</ItemGroup>
<ItemGroup>
<Folder Include="Interfaces\" />
<Folder Include="Interfaces\TemplatedGroup\" />
<Folder Include="GraphicObjects\" />
<Folder Include="Tutorials\" />
+ <Folder Include="Interfaces\DragAndDrop\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="image\tetra.png">
public event EventHandler Enabled;
/// <summary>Occurs when the enabled state this object is set to false</summary>
public event EventHandler Disabled;
- public event EventHandler Dragged;
+ public event EventHandler StartDrag;
+ public event EventHandler EndDrag;
public event EventHandler Dropped;
/// <summary>Occurs when one part of the rendering slot changed</summary>
public event EventHandler<LayoutingEventArgs> LayoutChanged;
/// </summary>
protected virtual void onStartDrag (object sender, EventArgs e){
Debug.WriteLine("DRAG => " + this.ToString());
- Dragged.Raise (this, null);
+ StartDrag.Raise (this, null);
}
/// <summary>
/// Occured when dragging ends without dropping
/// </summary>
protected virtual void onEndDrag (object sender, EventArgs e){
IsDragged = false;
+ EndDrag.Raise (this, null);
Debug.WriteLine("END DRAG => " + this.ToString());
}
/// <summary>
IsStringConstant = true;
return;
}
+ } else if (string.IsNullOrEmpty (splitedExp [0])) {
+ ptr++;
} else {
- if (string.IsNullOrEmpty (splitedExp [0]) || splitedExp [0] == ".") {//template root
+ if (splitedExp [0] == ".") {//template root
LevelsUp = -1;
ptr++;
} else {