Forum Replies Created
-
AuthorPosts
-
SupportKeymaster
Can you show a screenshot, please?
Or video maybe?SupportKeymasterUnderstand now, it will be improved in the next release.
And another thing is that same issue of RotateArrows if own Glyphs are added manually or from ImageList. It works only for default Glyphs from loaded skin.
Do you mean arrows in comboboxes?
SupportKeymasterMy Exe file is attached. After start under Win 10 the form is shown and app icon in taskbar is visible..
How it works in your Win 10 system?Attachments:
You must be logged in to view attached files.December 4, 2021 at 7:06 am in reply to: ComboBox and PopupMenu Customization using HTML Text required #70574SupportKeymasterThank you.
Try this code in the OnGetItemDrawData:procedure TForm1.sComboBox1GetItemDrawData(Sender: TObject; var ItemDrawData: TacItemDrawData); begin ItemDrawData.HtmlText := ItemDrawData.Text; // Copy text for a current Item ItemDrawData.Text := ''; // Use HtmlText end;
This event is called for an each Item and text should be different for each Item.
By the way, ‘Cyan’ color is not handled. Main 16 colors are added for parsing.
You can use a number format for colors there.SupportKeymasterIs it possible to repeat the error in the separate test-app?
SupportKeymasterThe LineVisible parameter should be defined to False in the OnGetMenuExtraLineData event:
procedure TForm1.sSkinManager1GetMenuExtraLineData(FirstItem: TMenuItem; var SkinSection, Caption: String; var Glyph: TBitmap; var LineVisible: Boolean); begin // Check a first item in popup menu if FirstItem = Multilinetext1 then begin // Show line in this SubMenu LineVisible := True; Caption := 'Additional information bar' end else LineVisible := False; end;
SupportKeymasterCan you show a demo with checkboxes, please?
I have trying checkboxes with glyphs received from ImageList and animation works there (skins should be active).SupportKeymasterSorry, but after recompiling applications works well.
Can you upload your Exe also, please?SupportKeymasterYou can just convert it to the Png24 using the Photoshop or something similar.
November 30, 2021 at 7:30 am in reply to: RadioButton AnimEffects ClickEffet Circle drawing problem #70547SupportKeymasterThank you, I see
I’ll research it.SupportKeymasterHello
Which version of the package do you use?
Which type of the button?SupportKeymasterI think, Parent panel should be skinned too.
If this parent panel will have changed color then children will have it too.
I can change a test project if you upload it.SupportKeymasterЕсли DoubleBuffered True, то картинка выводится не сразу по мере отрисовки, а сначала рендерится в памяти, помогает избежать мерцания (если контрол это поддерживает).
November 24, 2021 at 8:18 pm in reply to: BCB 6 and AlphaSkins 16.19 – Cannot add 3rd party control to list #70530SupportKeymasterThank you for the info, I will check and fix it.
November 24, 2021 at 4:45 pm in reply to: TsPanel with ColorTone is not working as before with transparent objects #70529SupportKeymasterThank you!
SupportKeymasterThank you, but TsTitleBar component doesn’t exist in these projects.
Are you sure these files are correct?SupportKeymasterThank you. Try this:
procedure TForm1.sSkinManager1GetMenuExtraLineData(FirstItem: TMenuItem; var SkinSection, Caption: string; var Glyph: TBitmap; var LineVisible: Boolean); begin Glyph := TBitmap.Create; Glyph.Width := sAlphaImageList1.Width; Glyph.Height := sAlphaImageList1.Height; sAlphaImageList1.GetBitmap32(0, Glyph); end;
If you make pf24bit, then transparent part is lost.
November 24, 2021 at 2:29 pm in reply to: ComboBox and PopupMenu Customization using HTML Text required #70526SupportKeymasterHello! Could you upload a full project, please?
SupportKeymasterHello!
Maybe the AutoSize property has influence there?
Can you try to change it?SupportKeymasterСпасибо за демку.
При запуске Exe видна проблема при первой отрисовке при выключенных скинах. Но при перекомпиляции под Delphi 7, 2009 и Tokyo проблема не наблюдается (приложен Exe скомпилированный под D2009). Пока непонятно почему так, попробую разные настройки Delphi 2009.Attachments:
You must be logged in to view attached files. -
AuthorPosts