Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIain McCoy <iainmc@mono-cvs.ximian.com>2005-08-22 20:23:29 +0400
committerIain McCoy <iainmc@mono-cvs.ximian.com>2005-08-22 20:23:29 +0400
commit19538fbb905817793415b08ce15aea3894a75eb9 (patch)
tree290447eda4fc05f3d564c4978ab3b76021e01db6 /mcs/class/WindowsBase
parent7ea013c4aa6800a7463db08405ded357239d5446 (diff)
2005-08-23 Iain McCoy <iain@mccoy.id.au>
* demo/runtimetest.cs: consume the new ObjectWriter interface * xamlc.cs: consume the new CodeWriter interface * System.Windows.Serialization/XamlParser.cs: rearrange class so that it presents a ReadNextNode() method, repeated calling of which will produce the next node with information about the Xaml file being parsed * Test/XamlParser.cs: rewrite tests so that they use the new interface of the parser * System.Windows.Serialization/CodeWriter.cs: changed code generator so that it consumes the event stream from the parser * Test/CodeWriter.cs: made tests friendly to the new way CodeWriter works * System.Windows.Serialization/CodeWriter.cs: changed object builder so that it consumes the event stream from the parser * Test/ObjectWriter.cs: made tests friendly to the new way ObjectWriter works 2005-08-07 Iain McCoy <iain@mccoy.id.au> * System.Windows.Serialization/data-classes-builder.pl, System.Windows.Serialization/data-classes.txt: add stuff to generate the zillion little classes to carry information around * PresentationFramework.dll.sources, Makefile: invoke data-classes-builder.pl as needed. svn path=/trunk/mcs/; revision=48670
Diffstat (limited to 'mcs/class/WindowsBase')
-rw-r--r--mcs/class/WindowsBase/System.Windows/RoutedEvent.cs32
-rw-r--r--mcs/class/WindowsBase/WindowsBase.dll.sources1
-rw-r--r--mcs/class/WindowsBase/WindowsBase_test.dll.sources1
3 files changed, 34 insertions, 0 deletions
diff --git a/mcs/class/WindowsBase/System.Windows/RoutedEvent.cs b/mcs/class/WindowsBase/System.Windows/RoutedEvent.cs
new file mode 100644
index 00000000000..b1b0a0039ac
--- /dev/null
+++ b/mcs/class/WindowsBase/System.Windows/RoutedEvent.cs
@@ -0,0 +1,32 @@
+//
+// RoutedEvent.cs
+//
+// Author:
+// Iain McCoy (iain@mccoy.id.au)
+//
+// (C) 2005 Iain McCoy
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+namespace System.Windows {
+ public sealed class RoutedEvent {
+ }
+}
diff --git a/mcs/class/WindowsBase/WindowsBase.dll.sources b/mcs/class/WindowsBase/WindowsBase.dll.sources
index a18874ab0dd..e111f544749 100644
--- a/mcs/class/WindowsBase/WindowsBase.dll.sources
+++ b/mcs/class/WindowsBase/WindowsBase.dll.sources
@@ -6,6 +6,7 @@ System.Windows/DependencyPropertyKey.cs
System.Windows/LocalValueEntry.cs
System.Windows/LocalValueEnumerator.cs
System.Windows/PropertyMetadata.cs
+System.Windows/RoutedEvent.cs
../../build/common/MonoTODOAttribute.cs
Assembly/AssemblyInfo.cs
../../build/common/Consts.cs
diff --git a/mcs/class/WindowsBase/WindowsBase_test.dll.sources b/mcs/class/WindowsBase/WindowsBase_test.dll.sources
index 9cb90abe702..8fd5361bd1b 100644
--- a/mcs/class/WindowsBase/WindowsBase_test.dll.sources
+++ b/mcs/class/WindowsBase/WindowsBase_test.dll.sources
@@ -1 +1,2 @@
AttachedProperties.cs
+LocalValueEntry.cs