How can I programatically Pin an AutoHide window? - dockpanel

I have an AutoHide ToolWindow that I want to Pin dynamically in the C# application.
Thanks
Chuck

Simply change the DockContent.DockState from one of the auto hide ones to its equivalent non auto hide state.

Related

How to hide a keypad for IOS in Titanium without using 'blur'

Can anyone please let me know how to hide the keypad without using 'blur' in titanium for IOS.
My scenario is I have a textfield, When I scan an item, that value will be shown on textfield. When textfield is focused, the scanner will be activated. In this scenario i need to focus the textfield, but should not show the keypad.
Can any one please share your ideas.
Thanks,
Swathi.
There is no possibility to hide keypad when textfield is focused on iOS. It is a system thing.
I think your approach is wrong. Why do you need textfield if you don't want to type text there?
Instead of it:
- create label (or label inside view) with proper background (looking like textfield),
- add 'click' event which will start scanning (i suppose you have that functionality for 'focus' event),
- if you need cursor blinking than create animation next to label.

Safari-style tabs Cocoa control?

I'm referring to the Safari 8's tabbar control (which looks almost exactly the same with Xcode 6's tabbar + the horizontal scrolling, if I'm not mistaken)
Is it available somewhere? How do I proceed?
P.S.: If the answer is something along the lines of "It's a custom control. But you can do it very easily by subclassing... everything there is to subclass", I'm prepared for it! lol
It is a custom control: ScrollableTabBarView. You can inspect it using F-Script
The closest visual match is the Yosemite style of MMTabBarView. This control however does not implement scrolling.
Also check out LITabControl and KPCTabsControl
It is just a Segmented / Tab bar with customized Radio buttons with added NSButton(this is for closing the tab).
You could check this using Accessibility Inspector.
And there is no straightforward control to achieve this, as you mentioned in P.S., you should go with customizing the controls.

Xcode IB: Replace button with another type?

In my Xcode project, I have a few buttons in the main window that I would like to replace with another type of button. In this case, there are a few rectangles and a rounded rectangle button. Is there an easy way to replace the buttons with another style, or am I stuck with deleting them and settings them all up again? Thanks in advance!
You can select button type custom and use your own special background as the button in Interface Builder.
If you want to further customize your button, I suggest making an outlet of it and customize it programmatically.
Good Luck!

adding an invisible button to the background in IB

I'm working with Xcode doing a Ipad app.
i simply want user to click anywhere on screen (not counting text fields) to perform some IBAction.I'm using an invisible button that covers my whole view.
Since I have some text fields in my view,i need to add this invisible button to the background of my user interface. I cant seem to find this option in the button attributes? any help?
Just set the button's type to custom.
Did you try setting the opacity of the button to zero?
I guess i got your point. You just want to put the UIButton(invisible) on the back of all the UITextField. The simple solution to this is open the Document Window in the IB. Now expand the view tree in the list view. Just drag your UIButton above the UITextFields and set the alpha value for the button in the property to be zero.
Hope this helps!!
iPad users don't "click". They "tap" or "touch".
In Interface Builder, I believe views are constructed with a z-index from top to bottom as they appear in the document window, so dragging your button so that it appears as the first subview of your main view should be a quick fix for this.
Have you considered other approaches? This doesn't sound like standard behaviour for an app and will probably cause havoc with anybody using Voice Over. What are you trying to accomplish?

How to show numeric input modal view like on iPad's lock screen?

when I unlock my iPad I get a small modal view where I can enter a PIN. I'd like to use the same thing within my app to protect a sensitive setting with a PIN.
Which UI element is used here? How can I fire it up?
Thanks.
René
Umm i dont think that view it available to use use by default, but you can build your own you can use the following code to get the numeric pad
UITextField tf;
tf.KeyboardType = UIKeyboardType.NumberPad;
or you can create a custom keyboard with interface builder you just need 12 buttons ans 4 text boxes then do it programmatically pretty straightforward hope this helps
Alex