Revision 21141c06

b/trunk/NetSparkle/NetSparkle2010.csproj
154 154
    </EmbeddedResource>
155 155
    <EmbeddedResource Include="NetSparkleDownloadProgress.resx">
156 156
      <DependentUpon>NetSparkleDownloadProgress.cs</DependentUpon>
157
      <SubType>Designer</SubType>
157 158
    </EmbeddedResource>
158 159
    <EmbeddedResource Include="NetSparkleDownloadProgress.ru.resx">
159 160
      <DependentUpon>NetSparkleDownloadProgress.cs</DependentUpon>
b/trunk/Pithos.Client.WPF/Shell/MiniStatusView.xaml
19 19
                <RowDefinition Height="20"/>
20 20
                <RowDefinition Height="Auto"/>
21 21
            </Grid.RowDefinitions>
22
            <Image Grid.Column="0" Width="48" Height="48" HorizontalAlignment="Right" VerticalAlignment="Center"  Source="/PithosPlus;component/Images/PithosTaskbar.png" Stretch="Fill" Opacity="0.7" ToolTip="Close Balloon" />
22
            <Image Grid.Column="0" Width="48" Height="48" HorizontalAlignment="Right" VerticalAlignment="Center"  Source="/PithosPlus;component/Images/PithosTaskbar.png" Stretch="Fill" Opacity="0.7" ToolTip="Close Balloon" x:Name="DropList" 
23
          Drop="DropList_Drop" 
24
          DragEnter="DropList_DragEnter" AllowDrop="True" />
23 25
            <TextBlock TextWrapping="Wrap" x:Name="Status" 
24 26
                   HorizontalAlignment="Stretch"
25 27
                   VerticalAlignment="Stretch" Grid.Column="1" Grid.RowSpan="2" Margin="2,5,2,2"/>
b/trunk/Pithos.Client.WPF/Shell/MiniStatusView.xaml.cs
30 30
        {
31 31
            this.Close();
32 32
        }
33

  
34
        private void DropList_DragEnter(object sender, DragEventArgs e)
35
        {
36
            if (!e.Data.GetDataPresent(DataFormats.FileDrop) ||
37
                sender == e.Source)
38
            {
39
                e.Effects = DragDropEffects.None;
40
            }
41
        }
42

  
43
        private void DropList_Drop(object sender, DragEventArgs e)
44
        {
45
            if (e.Data.GetDataPresent(DataFormats.FileDrop))
46
            {
47
                string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
48
                //MessageBox.Show(files[0]);
49
                //Utils.CopyMoveFiles(files);
50
            }
51
        }
33 52
    }
34 53
}
b/trunk/Pithos.sln
712 712
	GlobalSection(SolutionProperties) = preSolution
713 713
		HideSolutionNode = FALSE
714 714
	EndGlobalSection
715
	GlobalSection(Performance) = preSolution
716
		HasPerformanceSessions = true
717
	EndGlobalSection
715 718
EndGlobal

Also available in: Unified diff