Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
New to WPF and XAML. What does sap and sapv name spaces in xaml files mean and how do I resolve them? Thanks.
This should probably be a comment, but won't fit.
It sounds like you may well be referencing Workflow dlls without having added the relevant references (it's a slight stretch based on your Workflow tag).
sap and sapv often reference the System.Activities.Presentation.dll, which you may not have added to your project.
e.g:
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation"
xmlns:sapv="clr-namespace:System.Activities.Presentation.View;assembly=System.Activities.Presentation"
Examples and advice here (depending on what it is you're doing): http://msdn.microsoft.com/en-us/library/dd489419.aspx
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
i want my interface to look more elegant though professional and i want to make it good as web/android UI's. But how do i do it? I have heard about TELERIK UI. but i have no idea about how to use it. I have downloaded it and initialised it but do not know what and how to do next. any help would be really appreciated.Thanks.
You can start here
http://www.telerik.com/winforms/winforms-guide
http://www.telerik.com/videos/wpf
If you are not super attached to Telerik you can also look at Electron for native desktop apps (as it should have slightly easier learning curve):
http://electron.atom.io/
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I am trying to use an dll, i added a reference to it and then tried to use it in my project, but it says that it doesnt recognize the name space. Sorry i am not really experienced.
The using directive requires a namespace. Namespaces are separated by dots, making Fasm.NET two namespaces where NET would be a child of Fasm, which I guess is not the case for the library. The IntelliSense menu should show you examples of existing namespaces once you type the first character(s).
Though, judging from the Fasm library's sources it seems the complete namespace is:
Binarysharp.Assemblers.Fasm
Try that in your using statement and it should work.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have xgeno.mvc.utilities dll in my project references. I want to edit one of the method of this dll.
Can I do this?
You have to use a decompiler for this which has many variants on the web (there's google) and then make the modifications on the decomplied files and then compile it again and then point that newly compiled dll to your project
You need something like .NET Reflector, but since it is not free, you will probably want to look for free alternatives. See Here some discussion wich can help in the search.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I wonder that can we run a c# project for two times which contains several solutions inside it. For example We have runned our project firstly then we have have button which is start new one. I writed this code for 'start new button': System.Windows.Forms.Application.Run(new FormName_Main());
But this does not work as I want. Also I used the same code with Program.cs class.
Can someone tell me that how to run this project without closing the first one?
I think you need this:
Process.Start(Assembly.GetExecutingAssembly().CodeBase);
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am taking part in a project where I got to write a program which takes as an input XSLT file and return proper C# code. Besides It is really something new for me I don't know how to get started. Could anyone give me some prompts how to strike up with this project?Thanks in advance!
Well Microsoft has xsltc to compile a stylesheet to a .NET assembly. You could use a tool like Reflector to decompile the assembly to C# code.