Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (7 - 9 of 162)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Resolution Summary Owner Reporter
#228 fixed ABのダイアログにビジュアルスタイル背景を適用する イグトランス (egtra) イグトランス (egtra)
Description

プロパティシートを用いているもの以外ではビジュアルスタイル背景になっていないことを改善する。 具体的には、可能ならEnableThemeDialogTexture関数を使用する。

参考: 窓プログラミング ビジュアルスタイルを使う その2

#179 fixed ActiveBasic.Windows.UIでEventHandlerを使用するとコンパイルエラーになる dai イグトランス (egtra)
Description

ablibから問題の発生する最小限のコードを抜き出すと次のようになります。

Namespace ActiveBasic
Namespace Windows
Namespace UI

TypeDef EventArgs = System.EventArgs
TypeDef EventHandler = System.EventHandler

Class Control
Private
	finalDestroy As EventHandler

	Sub RegisterUnassociateHWnd(owner As Control)
		If IsNothing(owner) = False Then
			Dim e = New EventHandler(AddressOf(UnassociateHWndOnEvent))
			If IsNothing(finalDestroy) Then
				owner.finalDestroy = e
			Else
				owner.finalDestroy += e
			End If
		End If
	End Sub

	Sub UnassociateHWndOnEvent(sender As Object, e As EventArgs)
	End Sub
End Class

End Namespace 'UI
End Namespace 'Widnows
End Namespace 'ActiveBasic

EventArgs/EventHandlerを使用するイベントが全く実装できないため、優先度高にしました。

#53 fixed ArrayListクラスの実装 (System.Collections) dai イグトランス (egtra)
Description

コレクションの要望は高い。その第一弾としてこのArrayListを実装したい。

1 2 3 4 5 6 7 8 9 10 11 12 13
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.