Tag : csharp
Tag : csharp
The Global Azure Boot Camp is getting organized in Bhubaneswar, the Capital City of art, culture and history riched state Odisha, India.
The BBSRAzureCamp app is a FREE hand guide for the attendees to help them to get the detailed info on the event.
Guides attendees reach in the venue with the street level map view.The Session details puts some light on how the event will proceed on that day.
Along with the sessions, the Speakers are also equally important to the attendees. So does the Speakers tab. It also gives a brief introduction of the speakers.
We should not also forget the Organizing team, who spends their dedicated effort and time to make it happen. Also the Sponsors, who have extended their helping hand to make this event happen.
Please download the app and let me know how you feel about it.
Categories: CSharp, Visual Studio, Windows Phone, Xamarin
Apple announced the Smart Watch last week !!!
What is Apple Watch ??
A smart watch to run in-built apps, download and run store apps, connect people, keeps track of health & fitness, keeps timing etc. Just more than a normal watch.
Can we develop apps for this ??
Yes, we can.
What are the prerequisites to develop an app for the watch ??
Can we develop app for Apple watch using Xamarin ?
Yes, Xamarin has released support for Apple watch KIT this week. We can use either Visual Studio OR Xamarin Studio IDE to develop app for the Apple watch.
Some key points
More references ?
Categories: CSharp, iOS, Visual Studio, Xamarin
Xamarin uses the Keyboard class to show different virtual keyboards depending upon the user request. It contains several static properties to create different kind of virtual keyboards. Xamarin displays the Default Keyboard, if nothing is specified.
Keyboard for Chatting
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
MainPage = new ContentPage() { Content = new StackLayout() { Children = { new Entry() { Keyboard = Keyboard.Chat } } } }; |
It opens up the default virtual keyboard in the device, which would be convenient for chatting, having few extra keys.
Categories: Android, Cross Platform Mobile App, CSharp, iOS, Visual Studio, Windows Phone, Xamarin
The short answer is ScrollView is a Layout. But it can only contain a single Visual Element in its Content property.
Because, the Layouts such as Stack, relative etc. are derived from Layout<T> generic class. This Layout<T> generic class is derived from the Layout class, which is a non-generic class.
ScrollView is inherited from the Non-generic Layout class. That is the same reason, why it does not support a generic way to add children. It only exhibits the Content property to accept a single view or a Layout.
Categories: Android, Cross Platform Mobile App, CSharp, iOS, Visual Studio, Windows Phone, Xamarin