Programmatically open DatePicker in Xamarin.Forms - windows-phone-8

I want to use GestureRecogniser on an Image to open DatePicker in Xamarin.Forms.
I know the TapGestureRecogniser part. How do I programmatically open DatePicker in Xamarin.Forms ?
Note: The real reason behind this is I dont want Border that comes with WinPhone's DatePicker

The real reason behind this is I dont want Border that comes with WinPhone's DatePicker
You should be able to disable border with a custom renderer for Windows platform (https://developer.xamarin.com/guides/cross-platform/xamarin-forms/custom-renderer/)
How do I programatically open DatePicker in Xamarin.Forms ?
DateTimePicker.Focus();

Related

ReactJS: Image Selector

I am new to ReactJS ,I am developing a application where we display a List of Images from web and User can select an image,enter some details and submit this image to Backend application. I am looking for React Component (possibly from Material UI -https://material-ui-1dab0.firebaseapp.com/demos/grid-list/) where I can display a list of image and when clicking a image it show it as selected.I am looking something like Image Picker in Jquery (https://rvera.github.io/image-picker/).
Thanks!
react-image-picker npm package.
There are also several react-native specific packages if your target platform is mobile.

How change size or image of Toggle Button in Report Builder 2.0?

I want to resize or change the toggle Image (red box) in Report Builder 2.0. Is there any possibility?
Or can i toggle my elements via the column (blue box)?
I'm afraid it's impossible to change the icon in the Report Builder 2.0 (or 3.0).
If you really wish to change the image you shouldn't use an ssrs report. Could create a custom view in windows forms, wpf or html (css) that has the same functionalities as the report viewer, which will take a lot of effort.
You could move the toggle function to another textbox inside your report but I'm afraid the same icon will be placed in front of it.

Is a "close" icon necessary in other platforms?

In iOS, one doesn't need to add a close icon for an app. In the rare event that one wants to kill an app they can do it via the OS.
When looking at the cocos2d-x project that is created by default when using the console (v3.1.1), the sample HelloWorld scene places a button on screen to "close" the app.
Is this actually required in ANY platform ? Does it make sense to add this button at all ?
Apple usually rejects on this and Google and Microsoft don't like it.
You can, however, have close buttons on menus or popovers (say, like a pause screen).

Inconsistent default button behavior in WP8.1 Universal versus Silverlight 8.1 / Windows 8.1 / earlier

Why is the default button visual behavior on click different in Windows Phone 8.1 "universal" apps? Is there some way to restore it to the behavior consistent with all other versions of Windows Phone/Windows 8 or do I need to create a new custom control?
Windows Phone 7/8/8.1 Silverlight/Windows 8.1: Button background flashes a complementary color based on theme, button stays fixed.
Windows Phone 8.1 "universal": Button background doesn't change color, tilt effect is applied to the button displacing it based on where the user has touched it.
I'm a beginner developer with some experience in developing WP7/WP8 apps, trying to make my first universal app for WP8.1/Windows 8.1. I verified this behavior in VS2013 Update 2 RC with a new Windows Store App, new WP8.1 Silverlight app, new WP8.1 universal app and one of my existing WP8 apps by just creating a new button object in xaml. Appreciate any help!
In my own test, the button does change color to the PhoneAccentBrush resource.
But if you want to remove the tilt effect, you should just edit the style of the button. Since you claim to be a beginner, I'll explain how to easily change the style using VS2013. Maybe you don't know this yet.
Right-click your Button in the designer, goto Edit Template... on the menu, then select Edit a Copy...
This will generate the standard button style in your xaml which you can edit. FYI, this will change your document outline to the button style outline. (See Document Outline window in VS2013.) To go back to the page outline, click the up arrow icon at the top of the outline.
Anyways, find the < VisualState x:Name="Pressed"/ > line and then comment out the PointerDownThemeAnimation line.
Done!

Is there any way to Customize alertbox in HTML?

I want to customize the default look of alert boxes which generally shows in any browser. Is there any way to customize according to my choice?
I found this link.
Actually i want to customize alert boxes so that i can use it using PHONEGAP
No, you can't style alert boxes. If you want to style popups use modal windows.