can we customize page control in ios with different size of selected and unselected page control? - pagecontrol

Can we customize page control in ios with different size of selected
and unselected page control ?
I want different sizes of page controls.

Related

Using vertical scroll with tabcontrol

I am using Visual basic 2010 for coding. I have develop the code on desktop. Where I have adjusted form as per my desktop screen. I am going to run the application on Laptop. When I run the app the screen is not fitting to Laptop screen. SO I deciede to include vertical scroll. If moved up and down we can see all the parameter.
How can I do it?
I have added image for reference.
The scroll bar(s) should be inside the individual TabPages. You should set the Anchor and/or Dock properties of the TabControl so that it resizes with the form and set the AutoScroll property of each TabPage to True if you want it to display scroll bars if and when any of its child controls are outside its viewable area.

Setting tabstop (keyboard accessibility) for grid controls in Xaml

I have a Xaml page that has a bunch of different grids within grids. The page has 3 main "buttons" for a user to click. I want to allow a user using just a keyboard to tab through and select these 3 buttons, however because they are grid's, they do not have a tabstop. Anyone have a suggestion how I achieve this without a complete redesign of the page using something other than grids (such as buttons)?

background scrolling together with content

I have a form with an A4 image in the background (a standard questionaire). on that form i have textfields to fill. But if we scroll to the bottom of the form, the textfields scroll, but the background does not. How to fix the background to stick with the texfields ? VB.NET visual studio 2010.
Place a panel on the Form.
Place all your controls inside the panel.
Set the Background of the panel to your image.
Size your panel so that it is large enough to hold all the controls.
Place the panel at 0,0
Set the Form to AutoScroll

Yosemite Toolbar Style

How do I get the new toolbar item style of OSX Yosemite?
I created a standard toolbar, but the buttons don't have that button-like look. Do I need to drag actual buttons to the toolbar to get this look?
What I have:
What I want (that round bezel and white background):
There are two types of items in toolbars, image items and view items. It looks like you have an image item. You seem to want a view item where the view is an NSButton configured as a round textured button. So, yes, you should drag actual buttons to the toolbar.
I would not attempt to control the button background. You should use the button as-is to get the default system appearance. Apple recommends using a PDF template image (all black with the alpha channel used to make the image). The button itself would not have a title/label. Rather that would be on the containing toolbar item.
It looks like you may have applied an internal blue "glow" or highlight to your image. Generally, you should not do that. Let the frameworks apply appropriate effects to the template image automatically based on the button state and shows-state-by mode.
Toolbars in the Human Interface Guidelines
Controls which are appropriate to use in the window frame (including the toolbar)
Designing images for toolbar buttons
Works just fine for my Cocoa app under Yosemite -
are you actually setting the template property for your icon images..?
From the NSImage docs:
The 'template' property is metadata that allows clients to be smarter
about image processing. An image should be marked as a template if it
is basic glpyh-like black and white art that is intended to be
processed into derived images for use on screen.

How do I keep hidden controls from appearing during page load in Windows XAML?

My Windows Store app has a XAML page with several invisible controls on it (Opacity = 0). I have storyboards that fade these in based on user actions.
Even though the opacity of these controls is 0 in the designer, they still appear for about 1 second on the screen while the page loads. How do I prevent Windows from displaying these controls?