Stephan Eggermont wrote
> On 18/04/16 01:11, peaslee wrote:
>> I have a subclass of ComposableModel that I would like to keep from being
>> resized by the user. Is this possible?
>
> Sure.
>
> w := (MethodBrowser new
> methods: Object methods;
>
I have a subclass of ComposableModel that I would like to keep from being
resized by the user. Is this possible?
--
View this message in context:
http://forum.world.st/Make-Window-Not-Sizable-tp4890496.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
> PluggableListMorph>borderStyleToUse
> "Answer the borderStyle that should be used for the receiver."
>
> ^self enabled
> ifTrue: [self theme listNormalBorderStyleFor: self]
> ifFalse: [self theme listDisabledBorderStyleFor: self]
>
> If you then look at the different impl
Stephen,
I do not understand your answer. I am too new at this.
--
View this message in context:
http://forum.world.st/List-with-Border-tp4889556p4890053.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
Hi,
This code creates the list and fills it, but it does not show a border.
initializeWidgets
transactionList := ListModel new.
transactionList
items: #('one' 'two' 'three').
transactionLi
Hi,
This is my first week with Pharo. I have been moderately successful in
learning how things go, but I cannot seem to create a HELP|ABOUT dialog.
Pointing me in the right direction would be appreciated.
Thanks.
Bruce