2005-09-02 Ben Maurer <bmaurer@ximian.com>
* main.cs: Use my new nodestore helper api svn path=/trunk/msdn-browse/; revision=49372
This commit is contained in:
Родитель
7442ec5e64
Коммит
0a4e28371e
|
@ -1,3 +1,7 @@
|
|||
2005-09-02 Ben Maurer <bmaurer@ximian.com>
|
||||
|
||||
* main.cs: Use my new nodestore helper api
|
||||
|
||||
2005-08-19 Ben Maurer <bmaurer@novell.com>
|
||||
|
||||
* main.cs: Show the use of whidbey and winfx msdns. However, they
|
||||
|
|
6
main.cs
6
main.cs
|
@ -38,10 +38,10 @@ class MsdnView : Window {
|
|||
};
|
||||
|
||||
view.NodeSelection.Changed += delegate (object o, EventArgs args) {
|
||||
ITreeNode [] s = view.NodeSelection.SelectedNodes;
|
||||
if (s.Length == 0)
|
||||
TreeNode n = (TreeNode) view.NodeSelection.SelectedNode;
|
||||
if (n == null)
|
||||
return;
|
||||
TreeNode n = (TreeNode) s [0];
|
||||
|
||||
//
|
||||
// Fool msdn's code that tries to detect if it
|
||||
// is in a frame
|
||||
|
|
Загрузка…
Ссылка в новой задаче