Thread Rating:
  • 352 Vote(s) - 2.83 Average
  • 1
  • 2
  • 3
  • 4
  • 5
画面遷移時の初期フォーカス
02-27-2013, 01:16 PM,
#2
RE: 画面遷移時の初期フォーカス
これならいけそうです。

どうしても画面レイアウトを作るときにFrameを使うクセがあるのですが、

画面はDialogで作成する、という前提にしたほうがよさそうな気がしてきました。



Code:
{def d =
    {View
        {on WindowClose do
            {exit}
        }
    }
}
{let cnt:int = 0}
{define-proc {get-screen}:Dialog
    set cnt = cnt + 1
    {return
        {Dialog
            {VBox
                {TextField
                    value = cnt & "番目"
                },
                {CommandButton
                    takes-focus? = false,
                    {on Action do
                        {d.add replace? = true, {get-screen}}
                    }
                }
            },
            ||表示時に左上のコントロールにフォーカスを当てる
            {on AttachEvent at d:Dialog do
                {d.become-active}
            }
        }
    }
}
{do
    {d.add {get-screen}}
    {d.show}
}


Messages In This Thread
RE: 画面遷移時の初期フォーカス - by umemura - 02-27-2013, 01:16 PM
Forum Jump:


Users browsing this thread:
1 Guest(s)

MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1017 - Can't find file: 'mybb_threadviews' (errno: 2)
Query:
INSERT INTO mybb_threadviews (tid) VALUES('854')