File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace MemPlus . Classes . RAM
8+ {
9+ class RamAnalyzer
10+ {
11+
12+ }
13+ }
Original file line number Diff line number Diff line change 7070 <Generator >MSBuild:Compile</Generator >
7171 <SubType >Designer</SubType >
7272 </ApplicationDefinition >
73+ <Compile Include =" Classes\RAM\RamAnalyzer.cs" />
7374 <Compile Include =" Windows\AnalyzerWindow.xaml.cs" >
7475 <DependentUpon >AnalyzerWindow.xaml</DependentUpon >
7576 </Compile >
Original file line number Diff line number Diff line change 1111 TitleTextAlignment =" Center"
1212 Title =" MemPlus - RAM Analyzer" Height =" 350" Width =" 500" Icon =" /MemPlus;component/Resources/Images/ram.png" >
1313 <Grid >
14-
14+ <Grid .ColumnDefinitions>
15+ <ColumnDefinition Width =" *" ></ColumnDefinition >
16+ <ColumnDefinition Width =" Auto" ></ColumnDefinition >
17+ <ColumnDefinition Width =" *" ></ColumnDefinition >
18+ </Grid .ColumnDefinitions>
19+ <ListView x : Name =" LsvProcesses" Grid.Column=" 0" >
20+ <ListView .View>
21+ <GridView x : Name =" DynGrid" >
22+ <GridViewColumn Header =" Process" DisplayMemberBinding =" {Binding ProcessName}" />
23+ <GridViewColumn Header =" PID" DisplayMemberBinding =" {Binding Id}" />
24+ <GridViewColumn Header =" RAM usage" DisplayMemberBinding =" {Binding WorkingSet64}" />
25+ </GridView >
26+ </ListView .View>
27+ </ListView >
28+ <GridSplitter Grid.Column=" 1" Width =" 5" HorizontalAlignment =" Stretch" />
29+ <Grid Grid.Column=" 2" >
30+
31+ </Grid >
1532 </Grid >
1633</syncfusion : ChromelessWindow >
You can’t perform that action at this time.
0 commit comments