Monotouch.Dialog Style Implementation Without Using Monotouch.Dialog? [closed] - c#

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 9 years ago.
Improve this question
How would I go about implementing something in C# for iOS, that looks and feels like the MonoTouch.Dialog controls, without actually using Monotouch.Dialog?

It is the same amount of code if you use ObjC or Xamarin.iOS. Just slightly different syntax.
Your alternatives are
MT.Dialog (if you want to do the UI in code). This will dramatically reduce the complexity and MT.Dialog was designed exactly for the creation of quick and simple settings screens. In most cases, you will want to subclass the predefined elements to get best results.
Static UITableViewCells if you want to use Interface Builder. This allows you to create your UI in IB (or the iOS Designer built into Xamarin Studio). You can find tutorials on the web, like this one.

Related

Web scraping using c# in dynamic pages [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 5 days ago.
Improve this question
I'm trying to create a c# program that automates operations on IMDb (looks up a title and then adds it to a user's private list). I'd prefer to use c# because this last part of a program that also does other operations, but if it should be too difficult I might also be forced to use another language (python). As said before I really would like to use c# but I really don't know where to start, from what I understand I should use the "tags" in the html page, but I'm open to suggestions on how to proceed
site: https://www.imdb.com/
I tried to use a Chrome extension to parse the page and find the way to choose the right html button but i don't know how to go about it (i'm just a beginner in c# and i wanted to learn something by doing this little project)

how to develop UI for desktop application using TELERIK [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 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/

What's Easer a Tab or a Navigation Application using MVVM - WPF - C#.NET [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I need to develop a simple application which will contain 5 different pages/windows and I'm debating whether to do it as a Tab or a Navigation application. The reason I'm not sure is because I would like to use the MVVM pattern.
What would be the easiest or best approach to create an app like the one shown in the picture below following the MVVM pattern, tab or navigation?
Thanks
Although I'm not a WPF guru, my experience is that a tabbed interface is better than a multi-window or multi-page interface in MVVM; you can directly bind your UI elements to your VM properties and do not need any communication infrastructure (e.g. a messaging system such as the one in MVVMLight).

.net hide implementation and provide interface [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 8 years ago.
Improve this question
I am working with several developers who develop .net components for me.
I manage the licensing mechanism and want to hide the implementation.
I would like to just provide them the interface, with for example the methodIsLicenseValid() so they must use it in the code but cannot access the implementation.
Which pattern or technology should I use to reach that objective?
You should be using a Web Service to expose the methodIsLicenseValid(), and let your devs invoke it whenever necessary.
This will be suitable for your production environment anyways and also will allow you to change the implementation of the methodIsLicenseValid(), without causing hasles to the devs, as opposed to providing a library/dll to them

Advice creating language settings? [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 8 years ago.
Improve this question
Goal:
Create settings to change language in my C# application.
Problem:
Which best practice, advice, course of action, or similiar should I consider to create this functionality in order to reduce pitfall?
Please remember that the langugage can be applied in textbox, label, button etc.
Sooner or later I gonna need to add some more language in the future.
Is there any guideline to create technical languge settings in VS 2010?
Beyond the technical advice, additionally choose a "tester" language that all programmers in the team can read/write in order to test that they've configured resources properly and programmed properly to allow for localization. I would suggest Pig Latin or something similar (or like FaceBook's pirate english).

Categories

Resources