A list of active views in prism [closed] - c#

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
Doez prism assign any unique identifier/guid maintained for each view ?
Perhaps in tracking any references etc?

Prism doesn't do it. But you can do it easily if needed. However, I learned that you don't need to do this if you properly use navigation and navigation parameters.

Related

What is the significance of [DataContract][Serializable] & [DataMember] in our model for EF Code First Approach? [closed]

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 4 years ago.
Improve this question
Does this have any adverse effects on our CRUD operations?
Is there a significant difference if we don't use these attributes in our model?
Yes, there are a significant difference if you dont use the attributes.
See:
https://learn.microsoft.com/es-es/dotnet/framework/wcf/feature-details/using-data-contracts

Linking c++ dlib project to c# [closed]

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 have a project "Implementation of cca" using dlib library c++, on the other hand, I have a project which used c#.
Actually, I have no idea how to link them.
Please can you help me
Use the System.Runtime.InteropServices-namespace like described here: https://msdn.microsoft.com/en-us/library/ms235282.aspx
Good examples are http://www.dotnetperls.com/dllimport or https://drthitirat.wordpress.com/2013/05/30/combine-gui-of-c-with-c-codes/

how to create a new method based on editorformodel html helper [closed]

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'm new in MVC and I need to modify EditorForModel for using permissions (show/Not show, disabled/Enable, etc) in the fields from my DB, according with kind of user. Can anybody help me ?
You can create custom editors for your models by adding a EditorTemplates folder in your Views/Shared folder. More info about this process can be found here – http://blogs.msdn.com/b/nunos/archive/2010/02/08/quick-tips-about-asp-net-mvc-editor-templates.aspx

State view and application view asp.net c# [closed]

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
Can you give some links whit, code examples, what is State view and application view for beginners to better understand ?
http://www.w3schools.com/aspnet/aspnet_viewstate.asp
http://asp.net-tutorials.com/state/viewstate/

Which type of Collection to use for an UNDO features on a webpage [closed]

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'm using Asp.net and C#, I need create and UNDO feature for a webspace.
I would like to know wich Collection is most appropriate.
Array, HashTable, Dictionary?
Since you would want to undo the commends in the reverse order of when they were performed a Stack<T> would suit your needs. You can then push the commands on the stack when you've performed them and pop them when you wish to undo

Categories

Resources