mac-samples/PopupBindings
GouriKumari 4e6df5ffd6 Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00
..
Screenshots Added some screenshots 2012-12-11 17:39:08 -05:00
AppDelegate.cs Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00
Info.plist [samples] fix layout 2010-12-30 11:33:46 -05:00
Main.cs Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00
MainMenu.xib [samples] fix layout 2010-12-30 11:33:46 -05:00
MainMenu.xib.designer.cs Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00
Metadata.xml Added gallery opt-in to metadata files. 2014-02-20 10:31:26 -05:00
Person.cs Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00
PopupBindings.csproj Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00
PopupBindings.sln Manually upgrade the solutions 2012-01-26 23:54:36 -05:00
README.md Updated Mac Samples README files 2014-08-18 17:59:52 -04:00
TestWindow.cs Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00
TestWindow.xib [samples] fix layout 2010-12-30 11:33:46 -05:00
TestWindow.xib.designer.cs Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00
TestWindowController.cs Macsamples migrated to unified with tool 2014-11-21 20:09:57 -05:00

README.md

PopupBindings

"PopupBindings" is a Xamarin.Mac sample application that demonstrates how to use the bindings to manage the contents and selection of the NSPopupButton class. It uses the NSArrayController class to hold the data and track the selection.

This is done using the following NSPopupButton bindings:

The content binding describes the collection of objects. The collection is the objects in the array controller.

Bind to: PopupList
Controller Key: arrangedObjects
Model Key Path: (leave blank)

The contentValues binding describes what will be displayed in the pop-up menu. In this example it will be "name" portion of the Person object. Use the following choices for the contentValues binding:

Bind to: PopupList
Controller Key: arrangedObjects
Model Key Path: name

The selectedIndex binding describes the indexed selection the user chose from the menu. Use the following choices for the selectedIndex binding:

Bind to: PopupList
Controller Key: selectionIndex
Model Key Path: (leave blank)

All four Form Cells describing the person's address is bound to the array controller's selection using a specific NSDictionary key. So for the "street" Form Cell (Street), its value binding should look like:

Bind to: PopupList
Controller Key: selection
Model Key Path: addressStreet

Author

Copyright (C) 2014 Apple Inc. All rights reserved.
Ported to Xamarin.Mac by Kenneth J. Pouncey.