WPFでホットキーコントロールへの道5

投稿日 : 2008年5月25日 17:58

前回: WPFでホットキーコントロールへの道4

 ようやく一応できました。TextBoxのXAMLは前回をみてください。今回はコード部分についてです。

 ホットキーに表示する各キーの名前は、System.Windows.Input.Key列挙体の値との対応を地道にコードで書きました。日本語キーボードはこんな感じで良いでしょう。英語キーボードには未対応。

Public Sub New()
    InitializeComponent()

    Hotkeys = New Dictionary(Of Key, String)

    ' A-Z, F1-F12
    For Each k In New Key() {Key.A, Key.B, Key.C, Key.D, Key.E, Key.F, Key.G, Key.H, Key.I, Key.J, Key.K, Key.L, Key.M, Key.N, Key.O, Key.P, Key.Q, Key.R, Key.S, Key.T, Key.U, Key.V, Key.W, Key.X, Key.Y, Key.Z, _
                             Key.F1, Key.F2, Key.F3, Key.F4, Key.F5, Key.F6, Key.F7, Key.F8, Key.F9, Key.F10, Key.F11, Key.F12}
        Hotkeys.Add(k, k.ToString)
    Next

    ' D0-D9
    For Each k In New Key() {Key.D0, Key.D1, Key.D2, Key.D3, Key.D4, Key.D5, Key.D6, Key.D7, Key.D8, Key.D9}
        Hotkeys.Add(k, k.ToString.Chars(1))
    Next

    Hotkeys.Add(Key.Escape, "Esc")
    Hotkeys.Add(Key.Back, "BackSpace")
    Hotkeys.Add(Key.Tab, "Tab")
    Hotkeys.Add(Key.Enter, "Enter")
    Hotkeys.Add(Key.Space, "Space")

    Hotkeys.Add(Key.Insert, "Insert")
    Hotkeys.Add(Key.Delete, "Delete")
    Hotkeys.Add(Key.Home, "Home")
    Hotkeys.Add(Key.End, "End")
    Hotkeys.Add(Key.PageUp, "PageUp")
    Hotkeys.Add(Key.PageDown, "PageDown")

    Hotkeys.Add(Key.Up, "Up")
    Hotkeys.Add(Key.Left, "Left")
    Hotkeys.Add(Key.Down, "Down")
    Hotkeys.Add(Key.Right, "Right")

    Hotkeys.Add(Key.NumLock, "NumLock")
    Hotkeys.Add(Key.Divide, "Num /")
    Hotkeys.Add(Key.Multiply, "Num *")
    Hotkeys.Add(Key.Subtract, "Num -")
    Hotkeys.Add(Key.Add, "Num +")
    Hotkeys.Add(Key.Decimal, "Num .")
    Hotkeys.Add(Key.NumPad0, "Num 0")
    Hotkeys.Add(Key.NumPad1, "Num 1")
    Hotkeys.Add(Key.NumPad2, "Num 2")
    Hotkeys.Add(Key.NumPad3, "Num 3")
    Hotkeys.Add(Key.NumPad4, "Num 4")
    Hotkeys.Add(Key.NumPad5, "Num 5")
    Hotkeys.Add(Key.NumPad6, "Num 6")
    Hotkeys.Add(Key.NumPad7, "Num 7")
    Hotkeys.Add(Key.NumPad8, "Num 8")
    Hotkeys.Add(Key.NumPad9, "Num 9")

    Select Case GetKeyboardType(0)
        Case 7
            ' 日本語キーボード
            Hotkeys.Add(Key.OemMinus, "-")
            Hotkeys.Add(Key.OemQuotes, "^")
            Hotkeys.Add(Key.OemPipe, "\(|)")
            Hotkeys.Add(Key.OemTilde, "@")
            Hotkeys.Add(Key.OemOpenBrackets, "[")
            Hotkeys.Add(Key.OemPlus, "+")
            Hotkeys.Add(Key.OemSemicolon, "*")
            Hotkeys.Add(Key.OemCloseBrackets, "]")
            Hotkeys.Add(Key.OemComma, ",")
            Hotkeys.Add(Key.OemPeriod, ".")
            Hotkeys.Add(Key.OemQuestion, "/")
            Hotkeys.Add(Key.OemBackslash, "\(_)")
            Hotkeys.Add(Key.ImeConvert, "変換")

        Case Else
            '
    End Select

    SetHotkey(Input.Key.None, Input.ModifierKeys.None)
End Sub

 ホットキーコントロールのプロパティを作りました。ホットキーがセットされているか、修飾キー、キーの値が取れるようにしてます。あと読み取り専用です。設定する方法はメソッドで用意することにします。これは、修飾キーとキーを同時に設定する必要があるためです。

#Region "Properties"

    Private Shared ReadOnly IsKeySetPropertyKey As DependencyPropertyKey = DependencyProperty.RegisterReadOnly("IsKeySet", GetType(Boolean), GetType(HotkeyControl), New FrameworkPropertyMetadata(Nothing))
    Public Shared ReadOnly IsKeySetProperty As DependencyProperty = IsKeySetPropertyKey.DependencyProperty

    Public Property IsKeySet() As Boolean
        Get
            Return GetValue(IsKeySetProperty)
        End Get
        Protected Set(ByVal value As Boolean)
            SetValue(IsKeySetPropertyKey, value)
        End Set
    End Property


    Private Shared ReadOnly ModifierPropertyKey As DependencyPropertyKey = DependencyProperty.RegisterReadOnly("Modifier", GetType(ModifierKeys), GetType(HotkeyControl), New FrameworkPropertyMetadata(Nothing))
    Public Shared ReadOnly ModifierProperty As DependencyProperty = ModifierPropertyKey.DependencyProperty

    Public Property Modifier() As ModifierKeys
        Get
            Return GetValue(ModifierProperty)
        End Get
        Protected Set(ByVal value As ModifierKeys)
            SetValue(ModifierPropertyKey, value)
        End Set
    End Property


    Private Shared ReadOnly KeyPropertyKey As DependencyPropertyKey = DependencyProperty.RegisterReadOnly("Key", GetType(Key), GetType(HotkeyControl), New FrameworkPropertyMetadata(Nothing))
    Public Shared ReadOnly KeyProperty As DependencyProperty = KeyPropertyKey.DependencyProperty

    Public Property Key() As Key
        Get
            Return GetValue(KeyProperty)
        End Get
        Protected Set(ByVal value As Key)
            SetValue(KeyPropertyKey, value)
        End Set
    End Property

#End Region

 TextBoxのPreviewKeyDownとPreviewKeyUpイベント処理。ここでは入力されたキーを表示します。PreviewKeyDownイベントでリアルタイムに押されているきーを表示。ただし、コンストラクタで設定したHotkeysコレクションにあるキーのみ。修飾キーを除いて複数のキーが押されていてもホットキーとしては登録できないので、1個のキーだけ表示します。さらに、CtrlだけやAltだけでもホットキーとして登録できないので、その場合PreviewKeyUpイベントでホットキーなしにします。

Private Sub TextBox_PreviewKeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Input.KeyEventArgs)
    Dim text = New Text.StringBuilder

    Me.Modifier = Keyboard.Modifiers

    If CBool(Keyboard.Modifiers And ModifierKeys.Control) Then
        text.Append("Ctrl + ")
    End If
    If CBool(Keyboard.Modifiers And ModifierKeys.Shift) Then
        text.Append("Shift + ")
    End If
    If CBool(Keyboard.Modifiers And ModifierKeys.Alt) Then
        text.Append("Alt + ")
    End If

    Me.IsKeySet = False
    Me.Key = Input.Key.None

    For Each k In Hotkeys
        If Keyboard.IsKeyDown(k.Key) Then
            text.Append(k.Value)
            IsKeySet = True
            Me.Key = k.Key
            Exit For
        End If
    Next

    If text.ToString <> "" Then
        DirectCast(sender, TextBox).Text = text.ToString
    End If
    e.Handled = True
End Sub

Private Sub TextBox_PreviewKeyUp(ByVal sender As System.Object, ByVal e As System.Windows.Input.KeyEventArgs)
    If Not IsKeySet Then
        DirectCast(sender, TextBox).Text = "(Nothing)"
        Me.Modifier = Input.ModifierKeys.None
        Me.Key = Input.Key.None
    End If

    e.Handled = True
End Sub

 ホットキーコントロールにキーを設定するメソッドは次のようにしました。すこしPreviewKeyDownイベントとかぶってます。

Public Sub SetHotkey(ByVal key As Key, ByVal modifier As ModifierKeys)
    Dim text = New Text.StringBuilder

    If CBool(modifier And Input.ModifierKeys.Control) Then
        text.Append("Ctrl + ")
    End If

    If CBool(modifier And Input.ModifierKeys.Shift) Then
        text.Append("Shift + ")
    End If

    If CBool(modifier And Input.ModifierKeys.Alt) Then
        text.Append("Alt + ")
    End If

    If Hotkeys.Keys.Contains(key) Then
        IsKeySet = True
        text.Append(Hotkeys(key))
        TextBox.Text = text.ToString

        Me.Modifier = modifier
        Me.Key = key
    Else
        IsKeySet = False
        TextBox.Text = "(Nothing)"

        Me.Modifier = Input.ModifierKeys.None
        Me.Key = Input.Key.None
    End If
End Sub

 あとコンテキストメニューの処理。さっそくSetHotkeyメソッド使います。

Private Sub MenuItem_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
    SetHotkey(Input.Key.None, Input.ModifierKeys.None)
End Sub

 以上です。まだきちんと自分で使ってないのでバグってるかも。テスト用のウィンドウ。半角/全角キーとか押すとコードでは(Nothing)と設定しているはずなのに、テキストに反映されませんね。

Window1

フィードバック

# rVTGouYAfcIfTNPxJ

2019/04/23 2:52 by https://www.suba.me/
FqKQUs Retain up the terrific piece of function, I read few content material on this website and I think that your web weblog is actual intriguing and has got circles of good info .

# ZVhLdrAaXp

2019/04/26 20:39 by http://www.frombusttobank.com/
Some genuinely quality content on this web internet site, saved in order to my book marks.

# GjNJXysjmalYCZwAAJ

2019/04/27 21:20 by https://tannergregory7199.page.tl/Choosing-the-Pre
Very fantastic info can be found on website.

# MgjSBeJvMmm

2019/04/28 4:58 by http://tinyurl.com/yylt2n8t
Im grateful for the blog article.Really looking forward to read more. Fantastic.

# jPRoDwPxptcaNjVp

2019/04/30 17:08 by https://www.dumpstermarket.com
subject but typically folks don at talk about these issues.

# JigVAadrEW

2019/05/01 18:08 by https://www.bintheredumpthatusa.com
This web site certainly has all the info I needed concerning this subject and didn at know who to ask.

# EpkqlHciAjQQct

2019/05/01 20:30 by https://mveit.com/escorts/united-states/houston-tx
This blog is definitely cool as well as factual. I have discovered helluva useful advices out of it. I ad love to go back every once in a while. Thanks a bunch!

# aZXYSTMSPkMpjo

2019/05/01 20:31 by http://agrobacterium.science/doku.php?id=profile_d
Very informative blog article. Keep writing.

# ZBHaHAwRWSc

2019/05/02 17:08 by https://www.sdsdsoft.com/upload/home.php?mod=space
Very informative blog article.Really looking forward to read more. Fantastic.

# HrhirvcXnhAfT

2019/05/02 22:44 by https://www.ljwelding.com/hubfs/tank-growing-line-
I think other web-site proprietors should take this site as an model, very clean and fantastic user friendly style and design, let alone the content. You are an expert in this topic!

# YypbUkJpSrXC

2019/05/03 0:57 by https://www.ljwelding.com/hubfs/welding-tripod-500
Wonderful post however , I was wanting to know if you could write a litte more on this subject? I ad be very grateful if you could elaborate a little bit further. Appreciate it!

# qWGmItQiOIYjxEA

2019/05/03 4:31 by http://energostar.com/bitrix/rk.php?goto=http://gd
I was able to find products and information on the best products here!

# ZrKUSLJAaG

2019/05/03 13:00 by https://mveit.com/escorts/united-states/san-diego-
So that as why this piece of writing is amazing. Thanks!

# MQsjWKoGEtLIuWJaUo

2019/05/03 15:43 by https://www.youtube.com/watch?v=xX4yuCZ0gg4
You ave made some decent points there. I checked on the web to find out more about the issue and found most individuals will go along with your views on this web site.

# TxjvFsFQpLbqazYf

2019/05/03 16:18 by https://mveit.com/escorts/netherlands/amsterdam
Your style is really unique in comparison to other people I ave read stuff from. Thanks for posting when you ave got the opportunity, Guess I will just bookmark this page.

# FwyTrgyoAYam

2019/05/03 18:51 by https://mveit.com/escorts/australia/sydney
Wow, amazing blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your website is wonderful, as well as the content!

# cRRvLoVEAcvj

2019/05/03 22:33 by https://mveit.com/escorts/united-states/los-angele
Wonderful article! We will be linking to this great article on our site. Keep up the good writing.

# SjoWeVDpsf

2019/05/03 22:55 by http://axinet.ru/bitrix/redirect.php?event1=&e
Thanks again for the article.Thanks Again. Fantastic.

# qELAebClRrz

2019/05/07 18:14 by https://www.mtcheat.com/
Utterly indited written content , regards for information.

# NCFinrniQY

2019/05/08 3:08 by https://www.mtpolice88.com/
You, my friend, ROCK! I found exactly the info I already searched all over the place and simply could not find it. What a great web site.

# loHbfHQaQVWjcijhGX

2019/05/08 22:54 by https://amara.org/en/videos/G6wxOvVc6C8N/info/chea
Regards for helping out, fantastic information. The laws of probability, so true in general, so fallacious in particular. by Edward Gibbon.

# qvWIEOvCwJdMVCmjxy

2019/05/09 11:46 by https://www.reverbnation.com/artist/video/16050984
This website is known as a stroll-by way of for all the information you needed about this and didn?t know who to ask. Glimpse right here, and also you?ll undoubtedly uncover it.

# RfhTYPeqnP

2019/05/09 19:54 by https://pantip.com/topic/38747096/comment1
Nicely? to be Remarkable post and will look forward to your future update. Be sure to keep writing more great articles like this one.

# hfkpbAuJORwZt

2019/05/10 2:44 by https://www.mtcheat.com/
This website was how do you say it? Relevant!! Finally I have found something that helped me. Appreciate it!

# ipRSvVThHVUUO

2019/05/10 4:55 by https://totocenter77.com/
I truly appreciate this post. I have been looking all over for this! Thank God I found it on Google. You ave made my day! Thx again..

# imRwEgpOeJNXuB

2019/05/10 8:30 by https://rehrealestate.com/cuanto-valor-tiene-mi-ca
IaаАа?б?Т€Т?а?а?аАа?б?Т€Т?аБТ?ll complain that you have copied materials from another source

# pmoJpKyVqNcaUibHjtE

2019/05/10 9:25 by https://www.dajaba88.com/
Simply wanna state that this is very useful, Thanks for taking your time to write this.

# SZhpgJVAbGPuWPuee

2019/05/10 23:49 by https://www.youtube.com/watch?v=Fz3E5xkUlW8
My brother suggested I might like this blog. He was totally right. This post truly made my day. You can not imagine simply how much time I had spent for this info! Thanks!

# NHjcQGbjQPrf

2019/05/11 4:34 by https://devpost.com/sumplumusro
I think this is a real great blog.Thanks Again. Much obliged.

# CPiGreisGxQsTs

2019/05/11 5:10 by https://www.mtpolice88.com/
Your style is really unique compared to other people I ave read stuff from. Thanks for posting when you ave got the opportunity, Guess I will just book mark this site.

# uSdAuCnqALFYS

2019/05/11 8:54 by https://rentappa.com/user/profile/91602
Major thanks for the article post.Thanks Again. Awesome.

# AgjUaDhhUPs

2019/05/12 20:36 by https://www.ttosite.com/
The Birch of the Shadow I feel there may be considered a few duplicates, but an exceedingly helpful list! I have tweeted this. Numerous thanks for sharing!

# sLnqOFADSlrX

2019/05/13 0:23 by https://www.mjtoto.com/
Wonderful article! We will be linking to this particularly great post on our site. Keep up the good writing.

# puMkpKPlPfEetBasq

2019/05/13 19:26 by https://www.ttosite.com/
This is one awesome article.Thanks Again. Really Great.

# uoyjsGPXygpKmIiE

2019/05/14 2:35 by http://vbt.ebi.kit.edu/index.pl/en/extern/http://w
I went over this internet site and I think you have a lot of great information, saved to bookmarks (:.

# I like it whenever people come together and share ideas. Great website, keep it up!

2019/05/14 4:01 by I like it whenever people come together and share
I like it whenever people come together and share ideas.
Great website, keep it up!

# OpgYihUnNwhzdCkkQH

2019/05/14 5:31 by http://nadrewiki.ethernet.edu.et/index.php/Skip_Th
They are really convincing and can certainly work.

# pYzyyAtHzkhIim

2019/05/14 20:38 by https://bgx77.com/
Well I truly liked studying it. This subject offered by you is very effective for correct planning.

# RIPpqGIBmyfEioppX

2019/05/15 3:23 by http://aetnainpatient29bvs.firesci.com/make-the-mo
wonderful issues altogether, you just received a new reader. What could you suggest in regards to your put up that you made some days ago? Any sure?

# oJozAxVgbQLdLNVRJ

2019/05/15 8:00 by http://www.hhfranklin.com/index.php?title=Need_To_
Terrific work! This is the type of information that are supposed to be shared across the web. Disgrace on Google for not positioning this post higher! Come on over and visit my web site. Thanks =)

# DtEcDvdHPXQXyPTjRMf

2019/05/15 17:37 by https://www.minds.com/blog/view/975078093582602240
You made some decent factors there. I regarded on the internet for the difficulty and located most individuals will associate with together with your website.

# gATHvQVfqmlnfJtKY

2019/05/15 18:48 by http://funny-shop.club/story.php?id=24803
Simply wanna input that you have a very decent site, I love the layout it really stands out.

# MPbfXCzvGGQw

2019/05/15 20:46 by http://popularsci.net/poleznoe/perevozka_umershikh
I visited a lot of website but I think this one contains something special in it.

# njHKuafaXNLIdRs

2019/05/16 21:31 by http://www.swisslark.com/2017/09/repatriation-blue
It as not that I want to replicate your web site, but I really like the style. Could you let me know which design are you using? Or was it especially designed?

# zIEdRrWwnQBaZ

2019/05/16 21:49 by https://reelgame.net/
Wow! This can be one particular of the most helpful blogs We ave ever arrive across on this subject. Actually Wonderful. I am also an expert in this topic so I can understand your hard work.

# cjiEzwstzRiWwcSQ

2019/05/17 3:14 by https://hatebrake97.werite.net/post/2019/05/15/Ele
There may be noticeably a bundle to know about this. I assume you made certain good points in features also.

# qpuzsZcLbtVUbqCW

2019/05/17 4:24 by https://www.ttosite.com/
result of concerns relating to your in basic dental remedy?

# BMBQlXDVEwQKt

2019/05/17 6:28 by https://www.youtube.com/watch?v=Q5PZWHf-Uh0
You made some really good points there. I checked on the net to learn more about the issue and found most people will go along with your views on this site.

# lmxmeLrNlrhlnoMKgc

2019/05/17 19:23 by https://www.youtube.com/watch?v=9-d7Un-d7l4
You are my inspiration , I own few web logs and infrequently run out from to brand.

# pCVYrHmucP

2019/05/17 22:43 by http://bgtopsport.com/user/arerapexign566/
You are my inspiration , I own few web logs and infrequently run out from to brand.

# NIqNNwTWYKiC

2019/05/18 5:48 by https://www.mtcheat.com/
Really appreciate you sharing this post.Really looking forward to read more. Really Great.

# LAywADEsqtttWLBlj

2019/05/18 9:55 by https://bgx77.com/
Some really choice blog posts on this site, saved to my bookmarks.

# uwcUrhsLIHP

2019/05/18 11:21 by https://www.dajaba88.com/
Very good information. Lucky me I found your website by accident (stumbleupon). I ave book-marked it for later!

# xKmDPtLTePmxQ

2019/05/20 17:25 by https://nameaire.com
IaаАа?б?Т€Т?а?а?аАа?б?Т€Т?аБТ?ve recently started a site, the info you offer on this website has helped me tremendously. Thanks for all of your time & work.

# qIUKkfNiTuLvoZSx

2019/05/20 21:41 by http://www.okraslovacispolek.cz/modules.php?name=Y
This particular blog is definitely entertaining and also amusing. I have picked a bunch of handy advices out of this amazing blog. I ad love to return again soon. Cheers!

# wDOvvowuby

2019/05/21 22:10 by https://nameaire.com
Really appreciate you sharing this blog post.Thanks Again. Fantastic.

# lcGLmZyHoCGWLM

2019/05/22 16:54 by https://maxscholarship.com/members/hearthockey3/ac
This is one awesome blog article.Much thanks again. Want more.

# KWgtvoRamsRBA

2019/05/22 19:12 by https://www.ttosite.com/
Loving the info on this web site, you have done outstanding job on the posts.

# guLlXoBEpQXfNuMnmrv

2019/05/23 17:07 by https://www.combatfitgear.com
You are my inspiration , I have few blogs and infrequently run out from to brand.

# xeXTutRRaTF

2019/05/24 5:34 by https://www.talktopaul.com/videos/cuanto-valor-tie
Perfectly pent written content, Really enjoyed looking at.

# zFDmkXdWGpzeXA

2019/05/24 22:28 by http://tutorialabc.com
merely growing bigger Not Fake i mean, normally

# SrMkcyEnjzuvZKgFpyx

2019/05/25 1:04 by http://jymyssepetac.mihanblog.com/post/comment/new
I truly appreciate this blog article.Really looking forward to read more. Much obliged.

# vjGSTVHjUcSNfnlRZ

2019/05/25 3:18 by http://intiveterinaris.com/?p=690
Spot up with Spot up with this write-up, I honestly feel this website needs additional consideration. I all apt to be again to learn to read considerably more, many thanks for that information.

# WUnQzxclKE

2019/05/25 10:39 by http://www.vetriolovenerdisanto.it/index.php?optio
My brother recommended I might like this web site. He was entirely right. This post truly made my day. You can not imagine simply how much time I had spent for this information! Thanks!

# HAFWFIEubkLsICJXH

2019/05/26 3:28 by http://xn--b1adccaenc8bealnk.com/users/lyncEnlix53
Souls in the Waves Great Early morning, I just stopped in to go to your internet site and thought I ad say I experienced myself.

# lGjbCLYKDQp

2019/05/27 3:11 by http://adep.kg/user/quetriecurath526/
Major thankies for the post.Much thanks again. Awesome.

# IqpwoezIkHhUPBp

2019/05/27 17:58 by https://www.ttosite.com/
The Birch of the Shadow I believe there may become a couple of duplicates, but an exceedingly handy listing! I have tweeted this. A lot of thanks for sharing!

# ppynbzhwuFE

2019/05/27 19:31 by https://bgx77.com/
Major thankies for the article post. Really Great.

# EJwIqrUbeaRAw

2019/05/27 22:58 by http://yeniqadin.biz/user/Hararcatt870/
motorcycle accident claims I started creating templates, but I don at know how to make demos in my Joomla website, for my visitors to test them..

# HOBrFUKDsSqBSIcmE

2019/05/28 1:44 by https://exclusivemuzic.com
we all be familiar with media is a great source of facts.

# gVlVyRBfonGig

2019/05/28 6:44 by https://www.reddit.com/r/oneworldherald/
Merely a smiling visitant here to share the love (:, btw great pattern.

# jzEoeuIITlg

2019/05/30 1:46 by http://totocenter77.com/
Louis Vuitton For Sale ??????30????????????????5??????????????? | ????????

# fQUJVqNLwKE

2019/05/30 2:52 by https://backforgood.faith/wiki/Ya_no_andes_a_ciega
This blog is definitely educating and besides informative. I have discovered a bunch of useful advices out of this blog. I ad love to visit it again soon. Thanks!

# tUpCUnefwZv

2019/05/31 16:28 by https://www.mjtoto.com/
Major thankies for the blog post.Much thanks again. Much obliged.

# wazcakiZRbVO

2019/06/01 0:57 by https://www.slideshare.net/paedetohe
Wow! This could be one particular of the most helpful blogs We have ever arrive across on this subject. Basically Fantastic. I am also an expert in this topic so I can understand your effort.

# iLcbvkRnrHxv

2019/06/03 20:38 by http://totocenter77.com/
It as not that I want to replicate your web-site, but I really like the layout. Could you tell me which theme are you using? Or was it especially designed?

# LFHTJwozfA

2019/06/03 23:52 by http://availbrasstacks.org/__media__/js/netsoltrad
You have made some really good points there. I checked on the net for additional information about the issue and found most individuals will go along with your views on this web site.

# lMzFYwwMPnGewpZz

2019/06/04 2:44 by http://alexadm63.ru/bitrix/rk.php?goto=https://www
It as really a cool and useful piece of information. I am glad that you shared this helpful information with us. Please keep us up to date like this. Thanks for sharing.

# BRPKBHxccYLIsqs

2019/06/04 3:05 by https://www.mtcheat.com/
It as difficult to find well-informed people in this particular subject, however, you seem like you know what you are talking about! Thanks

# AFXYQtpwLq

2019/06/04 12:01 by http://traffictrade.club/story.php?id=9733
You made some good points there. I checked on the web for more info about the issue and found most people will go along with your views on this site.

# WlafZecPbwvYofLmy

2019/06/04 14:24 by https://www.ted.com/profiles/10592138
I value the post.Thanks Again. Really Great.

# NfhbMoBjhFDWVys

2019/06/04 20:30 by https://www.creativehomeidea.com/clean-up-debris-o
Your chosen article writing is pleasant.

# jOFrDxSEkUXcZAeC

2019/06/05 18:25 by https://www.mtpolice.com/
Major thankies for the article.Thanks Again. Will read on click here

# GUYzoVLhpFv

2019/06/05 22:38 by https://betmantoto.net/
Thanks for another excellent article. Where else could anyone get that type of info in such an ideal way of writing? I have a presentation next week, and I am on the look for such information.

# JkOoxmUaCErAKHTc

2019/06/07 0:02 by http://sport-news.world/story.php?id=9567
So why you dont have your website viewable in mobile format? Won at view anything in my own netbook.

# dRNzSGXwjMq

2019/06/07 20:24 by https://www.mtcheat.com/
Thanks a lot for the blog article. Fantastic.

# AEZQJMztULKwbMY

2019/06/08 1:18 by https://www.ttosite.com/
Simply wanna input that you have a very decent website , I like the style and design it actually stands out.

# ZEorbMzJJYxZyznso

2019/06/08 3:54 by https://mt-ryan.com
up with everything fresh you have to post. Would you list of the complete urls of

# ipoXjPdXhWo

2019/06/08 5:28 by https://www.mtpolice.com/
This is my first time pay a quick visit at here and i am actually pleassant to read all at alone place.

# ajNkfOOKnLUf

2019/06/10 18:16 by https://xnxxbrazzers.com/
Just discovered this site thru Bing, what a pleasant shock!

# MRptsFIkoVwxprWC

2019/06/12 5:44 by http://bgtopsport.com/user/arerapexign657/
Some really prime posts on this internet site , saved to favorites.

# zrvDezufFv

2019/06/12 16:57 by http://www.sla6.com/moon/profile.php?lookup=281715
This is a very good tip especially to those new to the blogosphere. Short but very accurate info Appreciate your sharing this one. A must read post!

# LVBGFLiVzwkfaymmwoD

2019/06/12 20:37 by https://forums.adobe.com/people/starn56063877
Wow! I cant believe I have found your weblog. Extremely useful info.

# AxDCXQeSqcHc

2019/06/13 5:37 by http://travianas.lt/user/vasmimica490/
The sketch is attractive, your authored subject matter stylish.

# WBftCkiWsQjjYejW

2019/06/14 16:36 by https://www.hearingaidknow.com/comparison-of-nano-
Touche. Great arguments. Keep up the good spirit.

# AyKBBLXWAEeUUoqjg

2019/06/14 18:48 by https://www.anobii.com/groups/01468a21d9a1c2c98e/
Perfectly written written content, Really enjoyed looking at.

# FvtYacEQMb

2019/06/15 2:58 by http://tinyurl.com/hjmhsf27
Well I definitely liked studying it. This information offered by you is very practical for correct planning.

# TRWCZDkIkrMme

2019/06/15 18:42 by http://nibiruworld.net/user/qualfolyporry498/
This website certainly has from the info I would like to about it subject and didn at know who will be asking.

# xmQpvJSOvDvtbp

2019/06/18 21:24 by http://kimsbow.com/
Im grateful for the blog.Much thanks again. Want more.

# bpbyNaIqLCtdLB

2019/06/19 2:28 by https://www.duoshop.no/category/erotiske-noveller/
may you be rich and continue to guide other people.

# rozFyNkSMVnDaOmqM

2019/06/19 22:29 by http://all4webs.com/soupnancy65/zthsuvzidq519.htm
I think this is a real great post.Really looking forward to read more. Really Great.

# LhzJZYBJYrWG

2019/06/22 2:20 by https://www.vuxen.no/
There is noticeably a lot to identify about this. I feel you made certain good points in features also.

# UsYIRIlICP

2019/06/22 3:47 by https://wealthchange10.webs.com/apps/blog/show/468
Very neat blog article.Thanks Again. Really Great.

# sXwXyMVtpjOyAYhxZLJ

2019/06/24 4:24 by http://whitney3674dk.thearoom.net/the-robinhood-we
Somebody necessarily lend a hand to make critically posts I might

# AIIzQeBleRzeNsSrpUh

2019/06/24 6:39 by http://strickland5622oq.tek-blogs.com/oh-and-also-
Many thanks for sharing this fine post. Very inspiring! (as always, btw)

# qVcmNeZnBsXkA

2019/06/25 22:35 by https://topbestbrand.com/&#3626;&#3621;&am
this web site and be up to date everyday.

# ZnuDQnRnNSBLtmypZ

2019/06/26 1:06 by https://topbestbrand.com/&#3629;&#3634;&am
Would love to incessantly get updated great web site!.

# RskiUQSbibuXTZe

2019/06/26 12:25 by http://kaseylandry.soup.io/
magnificent issues altogether, you simply won a new reader. What might you recommend in regards to your submit that you simply made a few days ago? Any positive?

# aQnJUXMuebJFXdBq

2019/06/26 18:08 by https://www.caringbridge.org/visit/areapie6/journa
So great to find somebody with some unique thoughts on this issue.

# wWiYRwdscNSNHt

2019/06/26 19:43 by https://zysk24.com/e-mail-marketing/najlepszy-prog
time as looking for a similar topic, your website came up, it seems good.

# xKJRNtcAiiyVuLQwsTc

2019/06/27 16:17 by http://speedtest.website/
Loving the information on this web site , you have done great job on the articles.

# dwrhgaccIZyBATV

2019/06/28 20:50 by https://toothpet38.webs.com/apps/blog/show/4689808
wonderful issues altogether, you just received a new reader. What could you suggest in regards to your put up that you made some days ago? Any sure?

# ccurFoVwDhSPaOBCp

2019/06/28 21:59 by http://eukallos.edu.ba/
Wow, amazing weblog format! How lengthy have you been blogging for? you make running a blog look easy. The whole look of your web site is fantastic, let alone the content material!

# eOMPVDaVbAHAVMnTx

2019/06/29 6:26 by http://www.lhasa.ru/board/tools.php?event=profile&
Wow, great blog post.Thanks Again. Great.

# upqXvtpGlovrTCeJfb

2019/06/29 9:16 by https://emergencyrestorationteam.com/
Im grateful for the post.Thanks Again. Want more.

# FgwTWZdRUOPZ

2019/06/29 11:24 by http://detroit.linkbyme.com/robs-towing-recovery-d
Wow, great post.Really looking forward to read more. Want more.

# Howdy! This is kind of off topic but I need some advice from an established blog. Is it very difficult to set up your own blog? I'm not very techincal but I can figure things out pretty quick. I'm thinking about creating my own but I'm not sure where to

2019/07/20 22:12 by Howdy! This is kind of off topic but I need some a
Howdy! This is kind of off topic but I need some advice from an established blog.
Is it very difficult to set up your own blog? I'm not very techincal but I can figure things out pretty
quick. I'm thinking about creating my own but I'm not sure where to begin.
Do you have any tips or suggestions? Cheers

# Thanks , I've just been searching for information approximately this subject for ages and yours is the greatest I have came upon till now. But, what about the bottom line? Are you sure in regards to the source?

2019/07/22 14:03 by Thanks , I've just been searching for information
Thanks , I've just been searching for information approximately this subject for ages and yours is the greatest I have came
upon till now. But, what about the bottom line? Are you
sure in regards to the source?

# It is not my first time to visit this web page, i am visiting this site dailly and obtain pleasant information from here everyday.

2019/08/25 0:55 by It is not my first time to visit this web page, i
It is not my first time to visit this web page, i am visiting this site dailly and obtain pleasant information from here everyday.

# Fanyastic offer 2021

2021/07/22 20:48 by https://tinysrc.me/go/hg0PJIWng
You will be pleasantly surprised to learn about our generous offer.
The link to our offer is valid for only one day https://tinysrc.me/go/hg0PJIWng

# Best offer 2021

2021/07/25 7:52 by https://tinysrc.me/go/hg0PJIWng
You will be pleasantly surprised to learn about our generous offer.
The link to our offer is valid for only one day https://tinysrc.me/go/hg0PJIWng

# re: WPF???????????????5

2021/08/08 20:19 by where do you get hydroxychloroquine
clorquine https://chloroquineorigin.com/# hydroxychloroquine side effect

# YekZThxifCUxnKKxqSh

2022/04/19 12:53 by markus
http://imrdsoacha.gov.co/silvitra-120mg-qrms

# Test, just a test

2022/12/13 4:32 by www.candipharm.com/
canadian customs pills vitamins http://candipharm.com/#
コメントの入力
タイトル
名前
Url
コメント