Questions tagged [propertysheet]

A property sheet is a window that allows the user to view and edit the properties of an item. It uaually has several pages, usually navigated by 'Next'/'Previous' buttons or tabs.

93 questions
0
votes
1 answer

Accessing controls within Property Sheet

I'm creating a Windows application using a PropertySheet (Wizard97 type), but I'm unclear how to access the controls from within the dialog callback. First I setup the property sheet. psp[1].dwSize = sizeof(PROPSHEETPAGE); psp[1].dwFlags =…
ndnfan
  • 161
  • 1
  • 6
0
votes
1 answer

Changing the IDCANCEL button to a IDCLOSE button on a propertysheet, taking localization into account

This might sound like a dumb question. I know that CMFCPropertyPage has a CancelToClose method but I can't find similar for the sheet object. I basically want the Cancel button to be "Close" at all times and was hoping to do it in the sheet…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
1 answer

Resizing property sheet is affecting the outlook bar dimensions

This is my OnSize method for resizing a property sheet: void CResizingMFCPropertySheet::OnSize(UINT nType, int cx, int cy) { CMFCPropertySheet::OnSize(nType, cx, cy); if (!GetActivePage()) return; if (!GetTabControl()) return; if…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
1 answer

PropertySheet tabs close on click

I am making a PropertySheet control with the Windows API, and for some reason tabs are closing when I click on them. For instance, if I add 4 tabs: Then if I click on any of those tabs except the active one (in which case nothing happens), it…
John Zane
  • 878
  • 1
  • 9
  • 22
0
votes
1 answer

Adding controls to a Property Sheet at runtime (without Dialog Templates)

As far as I can see, the way you normally create Property Sheets in Win32 (I am using the API, not MFC) programming is you have a bunch of dialog templates for each tab page, and you make the property sheet out of them. I have read about creating…
James Way
  • 15
  • 1
  • 4
0
votes
1 answer

IDE: Apply property sheet to actual project settings

is anybody aware of a way to apply (as in write or transfer) the settings of a Visual studio property sheet to the actual properties of the project (so they appear explicitly in .vcxproj file)? I would like to load in a property sheet, transfer the…
Navie
  • 164
  • 1
  • 8
0
votes
1 answer

create a Property-Sheet that can Add-Reference in Visual Studio 2015

Is it possible to Add Reference to a project in Visual Studio 2015 using Property Sheet? How? This below image (Add Reference) is what I want, but I want to do it using Property Sheet. This feature probably doesn't exist anymore…
javaLover
  • 6,347
  • 2
  • 22
  • 67
0
votes
1 answer

How to handle results from a PropertySheet?

I find different examples in the Internet of how to program a PropertySheet in WinAPI, but they are not complete. The code I am using is shown below. I have a PropertySheet with 3 Tabs, each one with a Dialog. The different Dialogs are called, when…
Alfred
  • 139
  • 2
  • 12
0
votes
1 answer

RCP 3.x editable PropertySheet view

I implemented a custom PropertySheet as described in here. So I have a main view, which implements the selectionprovider and it works to show the properties in my custom PropertySheet view. My problem is now, that I want to edit the some properties…
patpat
  • 1
0
votes
2 answers

Multiple scene nodes in PropertySheet Editor JavaFX

I want to add checkbox and textfield to one property of PropertySheet (ControlsFX library). Is it possible or no? So, i just need to add some GUI elements together to one PropertyEditor, for example checkbox + button, checkbox + label, checkbox +…
Korvin Gump
  • 383
  • 4
  • 7
0
votes
0 answers

Handle to window for PropertySheet

The below code, creating a Property Sheet, works without problem in an Application File. ....... CProp_Sheet Pr_Sheet(_T("PS")); CPr_Page_1 Pr_Page_1; CPr_Page_2 Pr_Page_2; Pr_Sheet.AddPage(&Pr_Page_1); Pr_Sheet.AddPage(&Pr_Page_2); m_pMainWnd =…
ZYX
  • 69
  • 1
  • 8
0
votes
1 answer

Set focus on PropertySheet Item Node in ControlsFX

I want to set focus on PropertySheet.Item Node (for example TextField) in ControlsFX. PropertySheet Item have unique name, so i can find PropertySheet.Item with code propertySheet.getItems().get(i).getName(). But there is no API to get Node which…
Korvin Gump
  • 383
  • 4
  • 7
0
votes
0 answers

ShellExtension AddPages isn't called

I am trying to implement a PropertySheetHandler shell extension, without much luck. For some reason, the ContextMenu handlers are successfully called (Initialize() and QueryContextMenu()) but AddPages() is not called. I have implemented the…
RanH
  • 740
  • 1
  • 11
  • 31
0
votes
0 answers

Eclipse Tabbed PropertySheet inactive color in Linux

I am not able to change the Inactive Background color for the tab in Ubunutu 14.10. Eclipse Preferences /Theme/Inactive BackgroundColor is having no effect on this. Any suggestions ??
0
votes
1 answer

CPropertySheet only shows for a second

I am trying to add a CPropertySheet with three CPropertyPages to my MFC application. My problem is that the Property sheet only shows for less than a second then closes. When I open a different modal dialog after creating the CPropertySheet, the…
Kyle Williamson
  • 2,251
  • 6
  • 43
  • 75