| |
|
|
| Hi Frank,
eh bien tummel je mich aussi im Listview-Forum...
Hab là ne concept: Kannste dans qui neuen Listview pas qui Possibilité einbauen, den Style trop échanger (de Report sur liste, seulement Icônes avec Unterschrift ...)
cela wäre vraie super (et ist bestimmt pas trop aufwändig!!!)
qui Jac |
|
|
| |
|
|
|
| Hi Jac,
qui verschiedenen Listview-Modi travailler très unterschiedlich. tu peux cela selber testen, entweder änderst du den Style nachträglich avec GetWindowLong/SetWindowLong (siehe Profanforum) ou bien auparavant avec Listview.dlls SetStyle(). mais je sage dir maintenant déjà, cela pas dans chaque Listview-Modus alles funktioniert...
Salut, Frank |
|
|
| |
|
|
|
| Hi Frank,
kannste un paire Styles dans qui Listview-Aider einbauen (qui pourrait dadurch oui pas allzu viel größer volonté). qui Hinweise sur l'autre Hilfedatei sommes zwar gentil, mais si on cet pas besitzt ou bien pas englisch spricht malheureusement wertlos.
qui Jac |
|
|
| |
|
|
|
| Hi,
fais je peut-être chez Gelegenkeit. ici un Auszug aus qui Aider:
The following window styles sont specific to list view controls.
LVS_ALIGNLEFT Specifies that items sont left-aligned dans icon and small icon view. LVS_ALIGNTOP Specifies that items sont aligned with le top of le list view control dans icon and small icon view. LVS_AUTOARRANGE Specifies that icons sont automatically kept arranged dans icon and small icon view. LVS_BUTTON Specifies that item icons look like buttons dans icon view. LVS_EDITLABELS Allows item text to être edited dans place. The parent window must process le LVN_ENDLABELEDIT notification message. LVS_ICON Specifies icon view. LVS_LIST Specifies list view. LVS_NOCOLUMNHEADER Specifies that a column header is not displayed dans report view. By default, columns have headers dans report view. LVS_NOLABELWRAP Displays item text on a single line dans icon view. By default, item text may wrap dans icon view. LVS_NOSCROLL Disables scrolling. All items must être within le client area. LVS_NOSORTHEADER Specifies that column headers do not work like buttons. This style is useful si clicking a column header dans report view does not carry out à action, such as sorting. LVS_OWNERDRAWFIXED Enables le owner window to paint items dans report view. The list view control sends a WM_DRAWITEM message to paint each item; il does not send separate messages for each subitem. The itemData member of le DRAWITEMSTRUCT structure contains le item data for le specified list view item. LVS_REPORT Specifies report view. When using le LVS_REPORT style with a List View control, le first column is always left-aligned. You can not use LVCFMT_RIGHT to change this alignment. LVS_SHAREIMAGELISTS Specifies that le control does not take ownership of le image lists assigned to it; that is, il does not destroy le image lists when il is destroyed. This style enables le same image lists to être used with multiple list view controls. LVS_SHOWSELALWAYS Always show le selection,si any, even si le control does not have le focus. LVS_SINGLESEL Allows only one item at a time to être selected. By default, multiple items may être selected. LVS_SMALLICON Specifies small icon view. LVS_SORTASCENDING Sorts items based on item text dans ascending l'ordre. LVS_SORTDESCENDING Sorts items based on item text dans descending l'ordre.
You can use le LVS_TYPEMASK mask to isolate le window styles that correspond to le current view: LVS_ICON, LVS_SMALLICON, LVS_LIST, and LVS_REPORT. You can use le LVS_ALIGNMASK mask to isolate le window styles that specify le alignment of items: LVS_ALIGNLEFT and LVS_ALIGNTOP. You can use le LVS_TYPESTYLEMASK mask to isolate le window styles that control item alignment (LVS_ALIGNLEFT and LVS_ALIGNTOP) and those that control header appearance and behavior (LVS_NOCOLUMNHEADER and LVS_NOSORTHEADER).
Salut, Frank |
|
|
| |
|
|
|
| Hmm,
merci erstmal!
mais: malheureusement nützen mir qui Konstanten rien...peux du mir écrivons, quelle Hex-Werte sich derrière elle cacher???
qui Jac |
|
|
| |
|
|
|
| Hi,
am besten besorgst du dir sur Gerhard Putschalkas page qui API Aider...
ici qui Werte (alles Hexwerte, sans h benutzen...):
LVS_ICON equ 0000h LVS_REPORT equ 0001h LVS_SMALLICON equ 0002h LVS_LIST equ 0003h LVS_TYPEMASK equ 0003h LVS_SINGLESEL equ 0004h LVS_SHOWSELALWAYS equ 0008h LVS_SORTASCENDING equ 0010h LVS_SORTDESCENDING equ 0020h LVS_SHAREIMAGELISTS equ 0040h LVS_NOLABELWRAP equ 0080h LVS_AUTOARRANGE equ 0100h LVS_EDITLABELS equ 0200h LVS_NOSCROLL equ 2000h LVS_TYPESTYLEMASK equ 0fc00h LVS_ALIGNTOP equ 0000h LVS_ALIGNLEFT equ 0800h LVS_ALIGNMASK equ 0c00h LVS_OWNERDRAWFIXED equ 0400h LVS_NOCOLUMNHEADER equ 4000h LVS_NOSORTHEADER equ 8000h
et ici encore qui ExStyles:
LVS_EX_GRIDLINES EQU 00000001h LVS_EX_SUBITEMIMAGES EQU 00000002h LVS_EX_CHECKBOXES EQU 00000004h LVS_EX_TRACKSELECT EQU 00000008h LVS_EX_HEADERDRAGDROP EQU 00000010h LVS_EX_FULLROWSELECT EQU 00000020h LVS_EX_ONECLICKACTIVATE EQU 00000040h LVS_EX_TWOCLICKACTIVATE EQU 00000080h LVS_EX_FLATSB EQU 00000100h LVS_EX_REGIONAL EQU 00000200h LVS_EX_INFOTIP EQU 00000400h LVS_EX_UNDERLINEHOT EQU 00000800h LVS_EX_UNDERLINECOLD EQU 00001000h LVS_EX_MULTIWORKAREAS EQU 00002000h LVS_EX_LABELTIP EQU 00004000h
Salut, Frank |
|
|
| |
|
|
|
| |
|
| |
|
|