Browse Source
- improved TaskListPad git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@4003 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
25 changed files with 322 additions and 122 deletions
@ -0,0 +1,20 @@ |
|||||||
|
// <file>
|
||||||
|
// <copyright see="prj:///doc/copyright.txt"/>
|
||||||
|
// <license see="prj:///doc/license.txt"/>
|
||||||
|
// <owner name="Siegfried Pammer" email="sie_pam@gmx.at"/>
|
||||||
|
// <version>$Revision$</version>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
using System; |
||||||
|
|
||||||
|
namespace ICSharpCode.Profiler.Controller.Data |
||||||
|
{ |
||||||
|
public class PerformanceCounterDescriptor |
||||||
|
{ |
||||||
|
|
||||||
|
|
||||||
|
public PerformanceCounterDescriptor() |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,28 @@ |
|||||||
|
// <file>
|
||||||
|
// <copyright see="prj:///doc/copyright.txt"/>
|
||||||
|
// <license see="prj:///doc/license.txt"/>
|
||||||
|
// <owner name="Siegfried Pammer" email="sie_pam@gmx.at"/>
|
||||||
|
// <version>$Revision$</version>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Windows.Controls; |
||||||
|
|
||||||
|
namespace ICSharpCode.Profiler.Controls |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Description of EventLine.
|
||||||
|
/// </summary>
|
||||||
|
public class EventLine : Grid |
||||||
|
{ |
||||||
|
public EventLine() |
||||||
|
{ |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
class EventItem |
||||||
|
{ |
||||||
|
int dataSet; |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,48 @@ |
|||||||
|
<UserControl x:Class="ICSharpCode.Profiler.Controls.ExtendedTimeLineControl" |
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
|
xmlns:y="clr-namespace:ICSharpCode.Profiler.Controls"> |
||||||
|
<DockPanel> |
||||||
|
<DockPanel Margin="3,0"> |
||||||
|
<TextBlock Text="Performance Counters" DockPanel.Dock="Top" /> |
||||||
|
<ListBox> |
||||||
|
<ListBoxItem>Test1</ListBoxItem> |
||||||
|
<ListBoxItem>Test2</ListBoxItem> |
||||||
|
<ListBoxItem>Test3</ListBoxItem> |
||||||
|
<ListBoxItem>Test4</ListBoxItem> |
||||||
|
<ListBoxItem>Test5</ListBoxItem> |
||||||
|
</ListBox> |
||||||
|
</DockPanel> |
||||||
|
<Grid Margin="3,0"> |
||||||
|
<Grid.RowDefinitions> |
||||||
|
<RowDefinition Height="20" /> |
||||||
|
<RowDefinition Height="20" /> |
||||||
|
<RowDefinition Height="Auto" /> |
||||||
|
</Grid.RowDefinitions> |
||||||
|
<TextBlock Grid.Row="0" Text="Time" /> |
||||||
|
<TextBlock Grid.Row="1" Text="Events" /> |
||||||
|
<TextBlock Grid.Row="2" Text="Graph" /> |
||||||
|
</Grid> |
||||||
|
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Disabled" Margin="3,0"> |
||||||
|
<Grid> |
||||||
|
<Grid.RowDefinitions> |
||||||
|
<RowDefinition Height="20" /> |
||||||
|
<RowDefinition Height="20" /> |
||||||
|
<RowDefinition Height="Auto" /> |
||||||
|
</Grid.RowDefinitions> |
||||||
|
<StackPanel Grid.Row="0" Orientation="Horizontal"> |
||||||
|
<TextBlock Text="Test" /> |
||||||
|
<TextBlock Text="a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa" /> |
||||||
|
<TextBlock Text="a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa" /> |
||||||
|
<TextBlock Text="a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa" /> |
||||||
|
<TextBlock Text="a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa" /> |
||||||
|
<TextBlock Text="a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa" /> |
||||||
|
<TextBlock Text="a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa" /> |
||||||
|
<TextBlock Text="a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa" /> |
||||||
|
</StackPanel> |
||||||
|
<y:TimeLineControl x:Name="t1" Grid.Row="1" /> |
||||||
|
<TextBlock Grid.Row="2" Text="Test" /> |
||||||
|
</Grid> |
||||||
|
</ScrollViewer> |
||||||
|
</DockPanel> |
||||||
|
</UserControl> |
||||||
@ -0,0 +1,28 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
using System.Windows; |
||||||
|
using System.Windows.Controls; |
||||||
|
using System.Windows.Data; |
||||||
|
using System.Windows.Documents; |
||||||
|
using System.Windows.Input; |
||||||
|
using System.Windows.Media; |
||||||
|
using System.Windows.Media.Imaging; |
||||||
|
using System.Windows.Navigation; |
||||||
|
using System.Windows.Shapes; |
||||||
|
|
||||||
|
namespace ICSharpCode.Profiler.Controls |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for ExtendedTimeLineControl.xaml
|
||||||
|
/// </summary>
|
||||||
|
|
||||||
|
public partial class ExtendedTimeLineControl : UserControl |
||||||
|
{ |
||||||
|
public ExtendedTimeLineControl() |
||||||
|
{ |
||||||
|
InitializeComponent(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue