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.

91 questions
1
vote
1 answer

append %PATH% of many Visual Studio property sheets (.props) additively

To define PATH locally in a project from property sheet, I need to add it in LocalDebuggerEnvironment. This approach works well when there is only 1 property sheet that define PATH. If I have more than one property sheet, while I want to use…
1
vote
1 answer

enable/disable "Whole program optimization" (/GL) in property sheet (.props)

In project property > C/C++ > Optimization > Whole Program Optimization, I can set /GL. Can I enable/disable the /GL in a shared property-sheet (.props file) and make many projects bases from it? I have tried :-
cppBeginner
  • 1,009
  • 5
  • 20
1
vote
1 answer

Setting a CMFCPropertySheet as RTL

I have seen several similar question on this subject but I can seem to resolve it. For example, on CodeProject: https://www.codeproject.com/Messages/2873837/Re-How-to-set-RTL-layout-for-a-CPropertySheet.aspx And on SO: RTL layout issue for Property…
Andrew Truckle
  • 13,595
  • 10
  • 45
  • 105
1
vote
1 answer

CMFCPropertySheet "Page" resources are not resizing with dynamic layout

I am really confused. :( Here is a new property sheet: #include "stdafx.h" #include "resource.h" #include "VisitsRotaMFCPropertySheet.h" CVisitsRotaMFCPropertySheet::CVisitsRotaMFCPropertySheet() :CResizingMFCPropertySheet(_T("VisitsRota"),…
Andrew Truckle
  • 13,595
  • 10
  • 45
  • 105
1
vote
0 answers

How to display a PropertySheet on two columns

I need to display a Propertysheet (ControlFx) on two columns like this property1 value1 property4 value4 property2 value2 property5 value5 property3 value3. The first idea was to use two property sheets. But we don't like it. So we…
Virginie
  • 11
  • 3
1
vote
1 answer

JavaFX/Controlsfx - How to monitor item change in a PropertySheet?

Is there a convenice way to monitor the propertysheet item status? Like textfield get focused, boolean status change, etc. I've looked the javadoc,did't find one. And there's an issue here, but the solution seems to let the editor know the change…
1
vote
1 answer

Eclipse RCP PropertySheet cell text wrapping

The properties view is not wrapping the text that is inside the cells in column "Value", so if the field has a big string, it isn't shown entirely. My question is how can I wrapp the text in the cells? I think I need to create a new PropertySheet,…
amp
  • 9,710
  • 15
  • 67
  • 118
1
vote
1 answer

How to add multiple property sheets to visual studio 2015?

I try to add multiple propertysheets to one project (I've configured one for openCV, the other one for TinyXML). However if I add this two propsheets to my project, it always finds the include Directory only for one Library (the other one doesn't…
thenamenamee
  • 41
  • 1
  • 4
1
vote
2 answers

Set category name for bean fields in PropertySheet JavaFX

ContolsFX example for PropertySheet have several options. First, create a bean with beaninfo. In this case I can't set category for each field in PropertySheet. I can choose only between basic and expert categories. Second option is to use Map,…
Korvin Gump
  • 343
  • 3
  • 7
1
vote
1 answer

How to detect current active page in Property sheet (C++/VS)

I am using Visual Studio C++ 2010, and I need to detect current active page of Property Sheet. I expect there should be send some message to tell when user activated the Page. But I did not found that message and where to place it in dialog…
John Boe
  • 3,016
  • 10
  • 32
  • 56
1
vote
1 answer

Netbeans Property Sheet - Row Height

When creating the PropertySheet in the createProperties method of a BeanNode subclass, is there a way to change height of a single row? Or is there a way to tell the property to change its height according to its content? (There should be displayed…
1
vote
0 answers

Handling WM_KEYDOWN in edit control on modal property sheet

First of all: I'm using C++ and ATL+WTL. I am trying to handle the WM_KEYDOWN for an edit control that is on a page of a modal property sheet. I'd like to get the VK_NEXT key while VK_CONTROL is down. Without success so far, I only get VK_NEXT if…
Serg
  • 131
  • 1
  • 7
1
vote
0 answers

Properties View Extension - PropertyContributor and PropertySource are different?

I am extending the Properties View by implementing a separate plug-in, which is defining tabbed property contributor/tabs/sections in its manifest. The property contributor is an active workbench part. I have managed to get a simple section in a…
1
vote
3 answers

How to respond to a PropertySheet's OK or Apply button after the pages have processed it?

The PropertySheet API lets you define a PropSheetProc that can (on Windows XP and above) receive messages when the OK or Apply button is pressed. This lets you do processing when one of these buttons is clicked. However, this handler is called…
Thomas
  • 150,847
  • 41
  • 308
  • 421
1
vote
2 answers

How to programmatically change settings in VS2010 property sheet?

I am looking for a method (macro/plugin/extension) to change values in a specific property sheet (which is loaded into every project in the solution) without having to reload the solution. Is there a way to access it from a macro or plugin…
Mark S
  • 235
  • 3
  • 11