Browse Source

Worked on forms designer.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@308 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Mike Krüger 20 years ago
parent
commit
2bf5fc75d2
  1. BIN
      data/resources/StringResources.bg.resources
  2. BIN
      data/resources/StringResources.cn-big.resources
  3. BIN
      data/resources/StringResources.cn-gb.resources
  4. BIN
      data/resources/StringResources.cz.resources
  5. BIN
      data/resources/StringResources.de.resources
  6. BIN
      data/resources/StringResources.dk.resources
  7. BIN
      data/resources/StringResources.es-mx.resources
  8. BIN
      data/resources/StringResources.es.resources
  9. BIN
      data/resources/StringResources.fi.resources
  10. BIN
      data/resources/StringResources.fr.resources
  11. BIN
      data/resources/StringResources.hu.resources
  12. BIN
      data/resources/StringResources.it.resources
  13. BIN
      data/resources/StringResources.jp.resources
  14. BIN
      data/resources/StringResources.kr.resources
  15. BIN
      data/resources/StringResources.lt.resources
  16. BIN
      data/resources/StringResources.nl.resources
  17. BIN
      data/resources/StringResources.pl.resources
  18. BIN
      data/resources/StringResources.pt-br.resources
  19. BIN
      data/resources/StringResources.pt.resources
  20. BIN
      data/resources/StringResources.ro.resources
  21. BIN
      data/resources/StringResources.ru.resources
  22. BIN
      data/resources/StringResources.se.resources
  23. BIN
      data/resources/StringResources.sl.resources
  24. BIN
      data/resources/StringResources.sr.resources
  25. BIN
      data/resources/StringResources.tr.resources
  26. 9
      src/AddIns/DisplayBindings/FormDesigner/Project/Src/FormDesigner/DesignerLoader/XmlDesignerLoader.cs
  27. 4
      src/AddIns/Misc/NUnitPad/Project/Src/Gui/NUnitPadContent.cs

BIN
data/resources/StringResources.bg.resources

Binary file not shown.

BIN
data/resources/StringResources.cn-big.resources

Binary file not shown.

BIN
data/resources/StringResources.cn-gb.resources

Binary file not shown.

BIN
data/resources/StringResources.cz.resources

Binary file not shown.

BIN
data/resources/StringResources.de.resources

Binary file not shown.

BIN
data/resources/StringResources.dk.resources

Binary file not shown.

BIN
data/resources/StringResources.es-mx.resources

Binary file not shown.

BIN
data/resources/StringResources.es.resources

Binary file not shown.

BIN
data/resources/StringResources.fi.resources

Binary file not shown.

BIN
data/resources/StringResources.fr.resources

Binary file not shown.

BIN
data/resources/StringResources.hu.resources

Binary file not shown.

BIN
data/resources/StringResources.it.resources

Binary file not shown.

BIN
data/resources/StringResources.jp.resources

Binary file not shown.

BIN
data/resources/StringResources.kr.resources

Binary file not shown.

BIN
data/resources/StringResources.lt.resources

Binary file not shown.

BIN
data/resources/StringResources.nl.resources

Binary file not shown.

BIN
data/resources/StringResources.pl.resources

Binary file not shown.

BIN
data/resources/StringResources.pt-br.resources

Binary file not shown.

BIN
data/resources/StringResources.pt.resources

Binary file not shown.

BIN
data/resources/StringResources.ro.resources

Binary file not shown.

BIN
data/resources/StringResources.ru.resources

Binary file not shown.

BIN
data/resources/StringResources.se.resources

Binary file not shown.

BIN
data/resources/StringResources.sl.resources

Binary file not shown.

BIN
data/resources/StringResources.sr.resources

Binary file not shown.

BIN
data/resources/StringResources.tr.resources

Binary file not shown.

9
src/AddIns/DisplayBindings/FormDesigner/Project/Src/FormDesigner/DesignerLoader/XmlDesignerLoader.cs

@ -54,6 +54,7 @@ namespace ICSharpCode.FormDesigner @@ -54,6 +54,7 @@ namespace ICSharpCode.FormDesigner
IDesignerLoaderHost host;
public override void BeginLoad(IDesignerLoaderHost host)
{
Debug.Assert(host != null);
this.host = host;
host.AddService(typeof(INameCreationService), new NameCreationService(host));
@ -78,6 +79,7 @@ namespace ICSharpCode.FormDesigner @@ -78,6 +79,7 @@ namespace ICSharpCode.FormDesigner
object IObjectCreator.CreateObject(string name, XmlElement el)
{
Console.WriteLine("Name:" + name);
string componentName = null;
if (el != null) {
@ -88,7 +90,12 @@ namespace ICSharpCode.FormDesigner @@ -88,7 +90,12 @@ namespace ICSharpCode.FormDesigner
}
}
}
object newObject = host.CreateComponent(host.GetType(name), componentName);
Debug.Assert(componentName != null);
Type componentType = host.GetType(name);
Debug.Assert(componentType != null);
object newObject = host.CreateComponent(componentType, componentName);
if (newObject is Control) {
((Control)newObject).SuspendLayout();

4
src/AddIns/Misc/NUnitPad/Project/Src/Gui/NUnitPadContent.cs

@ -198,8 +198,8 @@ namespace ICSharpCode.NUnitPad @@ -198,8 +198,8 @@ namespace ICSharpCode.NUnitPad
string outputAssembly = project.OutputAssemblyFullPath;
try {
TestDomain testDomain = new TestDomain();
NUnitProject prj = NUnitProject.LoadProject(outputAssembly);
Test test = testDomain.Load(prj);
// NUnitProject prj = NUnitProject.LoadProject(outputAssembly);
Test test = testDomain.Load(outputAssembly);
// TestSuiteBuilder builder = new TestSuiteBuilder();
// Console.WriteLine("Try to load '" + outputAssembly +"'");

Loading…
Cancel
Save