だんだん暑くなってきました。そんなわけで見た目に涼しいグラスフレームのコードを書いてみたよ。
Vistaの特長である(でもHome Basicは未対応)グラスフレーム(ブラーともいう)についてです。通常はウィンドウを作成するとウィンドウ枠内は不透明になりますが、IEの上部やMedia Playerの下部なんかは通常のウィンドウより透明の領域が多いですよね(当然ながらVistaの話し)。このような透明領域を増やす、クライアント領域の拡張はDesktop Window Manager (DWM)のAPIを呼び出すことで簡単にできます。そのことが日本語でMSDNにもろ書いてます。
WPF アプリケーションへのグラス フレームの拡張
記事はC#だったのでVBのコードを置いておきますね。XAMLは記事と同じです。
Imports System.Runtime.InteropServices
Public Class NonClientRegionAPI
<StructLayout(LayoutKind.Sequential)> _
Structure MARGINS
Public cxLeftWidth As Integer
Public cxRightWidth As Integer
Public cyTopHeight As Integer
Public cyBottomHeight As Integer
End Structure
<DllImport("DwmApi.dll")> _
Public Shared Function DwmExtendFrameIntoClientArea(ByVal hwnd As IntPtr, ByRef pMarInset As MARGINS) As Integer
End Function
End Class
Private Sub OnLoaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
Try
Dim mainWindowPtr = New WindowInteropHelper(Me).Handle
Dim mainWindowSrc = HwndSource.FromHwnd(mainWindowPtr)
mainWindowSrc.CompositionTarget.BackgroundColor = Color.FromArgb(0, 0, 0, 0)
' Get System Dpi
Dim desktop = System.Drawing.Graphics.FromHwnd(mainWindowPtr)
Dim DesktopDpiX = desktop.DpiX
Dim DesktopDpiY = desktop.DpiY
' Set Margins
Dim margins = New NonClientRegionAPI.MARGINS
' Extend glass frame into client area
' Note that the default desktop Dpi is 96dpi. The margins are
' adjusted for the system Dpi.
margins.cxLeftWidth = CInt((5 * (DesktopDpiX / 96)))
margins.cxRightWidth = CInt(5 * (DesktopDpiX / 96))
margins.cyTopHeight = CInt((CInt(topBar.ActualHeight) + 5) * (DesktopDpiX / 96))
margins.cyBottomHeight = CInt(5 * (DesktopDpiX / 96))
Dim hr = NonClientRegionAPI.DwmExtendFrameIntoClientArea(mainWindowSrc.Handle, margins)
If hr < 0 Then
' DwmExtendFrameIntoClientArea Failed
End If
Catch ex As DllNotFoundException
Application.Current.MainWindow.Background = Brushes.White
End Try
End Sub
marginsに透明にする部分の大きさ上下左右それぞれに指定してます。一度設定してしまえばウィンドウの大きさが変更されたとしても問題ありません。ただ、実際にWPFアプリケーションで実行してみて気になったのは、ウィンドウの拡大時に一瞬 不透明の部分が黒く見えてしまって見栄えが気になる。ドラッグの操作によりウィンドウ幅が変わるけど、ウィンドウ上のコントロールが変更に少し遅れて追従してるのでコントロールの後ろにあるウィンドウ自身が見えるのです。根本的解決ではありませんが、ウィンドウすべての領域を透明に指定することで黒く見える領域(不透明領域)がなくなるのでマシな感じです。すべてを透明に指定するにはmarginsの各値を-1にするとできます。
MISAOに適用してみた結果。
ウィンドウを最大化すると不透明になり、通常は黒っぽい色になります。なので上のように黒い文字があると見えづらくなるので これはダメですね。
フィードバック
# re: グラスフレーム
2008/06/24 23:44 by
>ウィンドウを最大化すると不透明になり、通常は黒っぽい色になります。なので上のように黒い文字があると見えづらくなるので これはダメですね。
例えば上の例なら,文字に白で Blur 効果をかけてあげると良いです.
http://blogs.msdn.com/tims/archive/2006/04/18/578637.aspx
ちなみにこれ何が本質的に厄介かというと,ClearType のアルゴリズムが問題なのですな.
ClearType は前景色と背景色の合成の一種なので,ウィンドウが透けてさらに裏側まで見えてしまう時に困ったことになります.背景色が確定しないと,最終的に表示する色が確定しないので,後ろのウィンドウ描く必要がありますし,後ろのウィンドウが動けば色々描画し直しです.
その辺を巧妙にごまかすのが,Aero 状態のタイトルバー等 DrawThemeTextEx の描画効果です.不透明な背景色をハロー的に周りに描くことで,その場で描画色が確定させているわけですね.
# re: グラスフレーム
2008/06/24 23:50 by
すみません,Blur というよりグローでしたね.
以下,C MAGAZINE MOOK『最新Windows Vistaプログラミング徹底理解』 「Windows Vistaのグラフィック・ゲーム環境」 (
http://www.cmagazine.jp/contents/200703.html) で使用したサンプルコードです.
<Label FontSize="48" Horizontal ContentAlignment="Center" Vertical Alignment="Center" Background="Transparent">
<Label.BitmapEffect>
<OuterGlowBitmapEffect GlowColor="White" GlowSize="16" Opacity="1" />
</Label.BitmapEffect>
Windows Vista
</Label>
# re: グラスフレーム
2008/06/25 0:09 by
おおお、コメントありがとうございます。参考になります。
なるほど、テキストのグローには、そのような効果というか役割があったのですね。
さっそく適用してみます。
> C MAGAZINE MOOK
持ってますw 書いてあったのですねー。
# vxtPwWDCcYgPRevTNBB
2019/04/22 18:42 by
2QgJxJ wow, awesome post.Thanks Again. Fantastic.
# wmLvlzjwazFkdO
2019/04/26 20:58 by
Very good article.Much thanks again. Much obliged.
# jYfQqddiXO
2019/04/27 5:27 by
This is one awesome article.Really looking forward to read more. Much obliged.
# HzCqvCUXDJbpxd
2019/04/28 2:45 by
It as not that I want to duplicate your web site, but I really like the design. Could you tell me which style are you using? Or was it especially designed?
# NRtPCkQZmIHlx
2019/04/28 4:11 by
Your style is unique in comparison to other folks I have read stuff from. Thanks for posting when you ave got the opportunity, Guess I all just book mark this blog.
# Bmxnteowgd
2019/04/28 4:29 by
Very good article.Thanks Again. Fantastic.
# bGELioJOrZDQyvAb
2019/04/29 19:55 by
Loving the information on this internet site , you have done great job on the blog posts.
# OhHXjpuiCkcz
2019/05/01 17:40 by
This is one awesome article post.Thanks Again. Keep writing.
# cHXXbDshnKSyTwuhzoY
2019/05/01 20:58 by
There is definately a great deal to find out about this subject. I really like all of the points you ave made.
# wzCMcwaRGBf
2019/05/02 2:36 by
Thanks-a-mundo for the post.Really looking forward to read more. Want more.
# SPSZoUIAMAsgTuE
2019/05/02 20:19 by
pretty helpful material, overall I believe this is really worth a bookmark, thanks
# ZIvBeAXCPZg
2019/05/02 22:08 by
In my opinion, if all webmasters and bloggers made good content as you did, the net will be much more useful than ever before.
# xqaZKVMkzshc
2019/05/03 5:01 by
Wow, marvelous blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is magnificent, let alone the content!
# AePwJRBMlg
2019/05/03 13:27 by
this topic. You realize so much its almost hard to argue with you (not
# yGMWsqzYTabbjh
2019/05/03 15:37 by
pretty beneficial stuff, overall I believe this is really worth a bookmark, thanks
# CGgwlfsdLJBKXNH
2019/05/03 21:51 by
Really enjoyed this blog.Really looking forward to read more. Awesome.
# CeGhaemqHrMLgXExvA
2019/05/04 2:59 by
Very good information. Lucky me I recently found your website by accident (stumbleupon). I ave bookmarked it for later!
# lGVGUxwkKpNBsmkTPA
2019/05/07 16:25 by
I value the article.Really looking forward to read more. Awesome.
# rbMkQjlmydpIOYmfph
2019/05/09 0:13 by
Wow, this post is fastidious, my younger sister is analyzing these things, thus I am going to inform her.
# xKiCVOlMrulaqs
2019/05/09 2:41 by
It as enormous that you are getting thoughts
# cLDJYNBGFrHHyMmXCrp
2019/05/09 4:07 by
This is one awesome blog post.Thanks Again. Great.
# fUbNrPAGpCwaJ
2019/05/09 7:37 by
This excellent website certainly has all the info I wanted about this subject and didn at know who to ask.
# sBZIdyLNpCNFXf
2019/05/09 12:42 by
Thanks for a marvelous posting! I actually enjoyed
# TndMJpfoHWOx
2019/05/09 14:51 by
Incredible points. Great arguments. Keep up the great spirit.
# CiNitDEmIF
2019/05/09 17:01 by
This awesome blog is no doubt educating and besides diverting. I have chosen a lot of useful stuff out of it. I ad love to go back over and over again. Thanks!
# wGkPeIxNdFyO
2019/05/09 23:14 by
Its hard to find good help I am constantnly saying that its difficult to get good help, but here is
# BkHVsxLLZsxJjA
2019/05/10 3:13 by
Tetraed LIMS logiciel de gestion de laboratoire Sern amet port gaslelus
# kyIjWpbncZzJUx
2019/05/10 7:13 by
Very good day i am undertaking research at this time and your website actually aided me
# NfEyEgqAuLsBMiNOcV
2019/05/10 7:43 by
three triple credit report How hard is it to write a wordpress theme to fit into an existing site?
# xPxWGeOKvz
2019/05/10 9:54 by
valuable know-how regarding unpredicted feelings.
# mdtEjsvdnW
2019/05/10 14:38 by
Thanks so much for the article post.Really looking forward to read more. Much obliged.
# ZVFfigeheIM
2019/05/11 9:20 by
In my opinion you are not right. I am assured. Write to me in PM, we will discuss.
# FZvqiTchLoa
2019/05/12 21:24 by
What as up it as me, I am also visiting this web site on a regular basis, this website is genuinely
# IVSsbHgVDTfwNxtJ
2019/05/13 19:52 by
This site was how do I say it? Relevant!! Finally I ave found something that helped me. Thanks a lot!
# dspGveMNCsErdVtKd
2019/05/14 17:04 by
Spot on with this write-up, I truly think this website needs much more consideration. I?ll probably be again to read much more, thanks for that info.
# dNtLaEYKyrlPfNLwo
2019/05/14 19:21 by
Your style is so unique in comparison to other people I have read stuff from. Thanks for posting when you have the opportunity, Guess I all just bookmark this blog.
# mzEvKoqHxkE
2019/05/14 19:51 by
Thanks-a-mundo for the article post.Thanks Again. Want more.
# grqeMsPcwitxncZ
2019/05/15 0:02 by
Incredible! This blog looks just like my old one! It as on a totally different subject but it has pretty much the same page layout and design. Superb choice of colors!
# rnEMSlhZJFgdBSVUjX
2019/05/15 0:32 by
I really loved what you had to say, and more than that,
# BChlXuAIXtyUNRiXnoj
2019/05/15 15:16 by
That is a good tip especially to those new to the blogosphere. Simple but very precise information Thanks for sharing this one. A must read post!
# EBituuADfmNhNnx
2019/05/15 16:29 by
This really answered my drawback, thanks!
# CiDUcBNqoLuNaC
2019/05/17 3:09 by
You can certainly see your skills within the work you write. The world hopes for more passionate writers such as you who are not afraid to mention how they believe. At all times go after your heart.
# ulnGyqnLZrqzmqm
2019/05/17 6:54 by
you employ a fantastic weblog here! want to earn some invite posts on my website?
# hMszcTlWIKzcB
2019/05/17 19:50 by
Perfectly composed content material , regards for entropy.
# PDUejScwXMRTpHEo
2019/05/17 20:39 by
It as very straightforward to find out any matter on net as compared to textbooks, as I found this article at this site.
# uoQTLGuPFXrb
2019/05/17 22:01 by
There is definately a great deal to learn about this subject. I like all the points you have made.
# nuCHwPbwZtFoLC
2019/05/18 6:19 by
This very blog is without a doubt educating as well as informative. I have discovered helluva helpful stuff out of this amazing blog. I ad love to go back every once in a while. Cheers!
# RFsspfoiXmMLYrva
2019/05/18 10:43 by
Wohh exactly what I was looking for, regards for putting up.
# IwMNKnToJWDlRDGYsKS
2019/05/18 14:04 by
I\\\ ave had a lot of success with HomeBudget. It\\\ as perfect for a family because my wife and I can each have the app on our iPhones and sync our budget between both.
# AlWQDSZmWhpHZqyvUt
2019/05/20 17:50 by
You could certainly see your skills in the work you write. The arena hopes for more passionate writers like you who are not afraid to mention how they believe. At all times follow your heart.
# YEvrxUFBBLkhMfZHED
2019/05/21 22:39 by
Some genuinely fantastic posts on this internet site , regards for contribution.
# FCsVhmjMDqpx
2019/05/22 5:12 by
Very informative blog post.Much thanks again. Awesome.
# KRlQAsCmOh
2019/05/22 18:32 by
There as a bundle to know about this. You made good points also.
# jZLxuMIkUoIiq
2019/05/22 19:35 by
If you are going to watch comical videos on the net then I suggest you to go to see this web site, it carries truly therefore comical not only video clips but also extra stuff.
# irjpafUvtjDYNlEszPc
2019/05/22 22:14 by
Thanks for sharing, this is a fantastic blog article.Much thanks again.
# JWrivSfKSqkOBIzM
2019/05/22 22:49 by
logiciel gestion finance logiciel blackberry desktop software
# tAqXKYXJYXZ
2019/05/22 23:21 by
I was recommended this blog by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my trouble. You are incredible! Thanks!
# wbajANOpxlykoDODO
2019/05/23 6:42 by
There is perceptibly a bundle to realize about this. I assume you made various good points in features also.
# VxeRZYHCVZgrANo
2019/05/23 17:33 by
pretty valuable material, overall I think this is well worth a bookmark, thanks
# HUANwgfbhfqW
2019/05/24 9:03 by
Your style is very unique compared to other folks I have read stuff from. Many thanks for posting when you ave got the opportunity, Guess I will just book mark this web site.
# MCkIwfjAjzTg
2019/05/24 13:11 by
Wow! This can be one particular of the most useful blogs We ave ever arrive across on this subject. Actually Magnificent. I am also an expert in this topic so I can understand your effort.
# yUjLutizQscDAMLTf
2019/05/25 3:46 by
Thanks , I have just been looking for info about this subject for ages and yours is the greatest I ave discovered till now. But, what about the bottom line? Are you sure about the source?
# EuJVQeuXhWY
2019/05/25 5:58 by
It as not that I want to copy your web site, but I really like the pattern. Could you let me know which style are you using? Or was it custom made?
# HdrPcgVbAcIFqbkiNrs
2019/05/25 8:09 by
Recently, I did not give lots of consideration to leaving feedback on blog web page posts and have positioned comments even considerably less.
# jybVSgBNKT
2019/05/25 12:54 by
What kind of digicam did you use? That is certainly a decent premium quality.
# ulsUwmviZhtwhjCnET
2019/05/27 2:28 by
PlаА а?а?аА а?а?se let me know where аАа?аБТ?ou got your thаА а?а?mаА а?а?.
# SoWafxgtmVGVUMNhq
2019/05/27 18:51 by
I visited several sites however the audio quality for audio songs current at this
# ZJjfNYuHdbNva
2019/05/27 22:05 by
Wonderful article! We will be linking to this particularly great post on our website. Keep up the good writing.
# JXwYvsqrpkQH
2019/05/28 6:05 by
Thanks for another great post. Where else may anybody get that type of info in such an ideal way of writing? I have a presentation next week, and I am at the search for such information.
# HwpbSGUvLfqGWG
2019/05/29 20:51 by
rs gold ??????30????????????????5??????????????? | ????????
# dpvqrlchKmGUfTDHwb
2019/05/29 21:41 by
Some really prize content on this site, saved to bookmarks.
# AdQZBtrkXP
2019/05/30 0:41 by
Somebody necessarily lend a hand to make critically posts I might
# IohvPImYVrOIhuaP
2019/05/30 2:20 by
There are positively a couple extra details to assume keen on consideration, except gratitude for sharing this info.
# cQvgGiImEGfz
2019/05/30 2:51 by
Very informative article.Thanks Again. Great.
# WTrxvLCgwLISBmdrzcm
2019/05/30 3:28 by
IaаАа?б?ТТ?а?а?аАа?б?ТТ?аБТ?ll complain that you have copied materials from another source
# vAmJsSduRtMSwKd
2019/05/30 6:57 by
Your style is so unique compared to other folks I ave read stuff from. Many thanks for posting when you ave got the opportunity, Guess I all just bookmark this web site.
# FqrCFZQXLkQJfYp
2019/05/30 7:20 by
It as hard to find educated people on this topic, but you sound like you know what you are talking about! Thanks
# CsRuZVbmasS
2019/05/30 11:30 by
You made some good points there. I checked on the internet for more info about the issue and found most people will go along with your views on this website.
# HxNmzCAlYSeSXuZDtAz
2019/05/30 21:57 by
Usually I don at read post on blogs, however I wish
# trkfbIAUULUuo
2019/06/01 0:09 by
You ave made some good points there. I looked on the web to learn more about the issue and found most individuals will go along with your views on this site.
# iQzZGkzFJcEA
2019/06/03 19:56 by
Major thankies for the blog article.Really looking forward to read more. Keep writing.
# QWYPYFjbGyRdhKyQthx
2019/06/04 0:28 by
You have brought up a very great points , thanks for the post.
# SzmbenrRiUrNrxMSb
2019/06/04 9:15 by
such an ideal means of writing? I have a presentation subsequent week, and I am
# ulVBuMNYqWWCYUzMEDa
2019/06/04 21:01 by
Post writing is also a fun, if you know afterward you can write otherwise it is complex to write.
# JgHrhNvYFmmlc
2019/06/05 17:43 by
Thanks , I have just been looking for info about this subject for ages and yours is the best I ave discovered till now. But, what about the conclusion? Are you sure about the source?
# LKqnavAgAOXrWTeqd
2019/06/07 1:37 by
Really informative blog post.Much thanks again. Really Great.
# ROdAHkuFXAAWvXgFAG
2019/06/07 4:01 by
Really enjoyed this blog.Much thanks again. Great.
# inRuQWMSfg
2019/06/07 18:52 by
Well I definitely liked studying it. This post procured by you is very useful for proper planning.
# TDIdwkSHrtqZtQevpt
2019/06/07 22:22 by
You made some good points there. I looked on the internet for additional information about the issue and found most people will go along with your views on this website.
# oDRxdHfeNTmBSOE
2019/06/08 0:35 by
in the daylight, as i enjoy to find out more and more.
# wgCWIsVNDBQ
2019/06/10 17:31 by
I truly appreciate this blog post.Really looking forward to read more. Keep writing.
# vSlmCdKlGQtm
2019/06/11 3:37 by
Very good article. I am dealing with some of these issues as well..
# PvzWrPXMlYQrg
2019/06/11 21:30 by
Its not my first time to go to see this site, i am visiting this web site dailly and get good information from here every day.
# lScZWeExoZQM
2019/06/12 0:13 by
The most beneficial and clear News and why it means a lot.
# MpgfEbHzdEQw
2019/06/12 4:56 by
I think other site proprietors should take this website as an model, very clean and excellent user genial style and design, let alone the content. You are an expert in this topic!
# XDooIELiTNYVJaEF
2019/06/14 20:20 by
My brother recommended I might like this blog. He was totally right. This post actually made my day. You can not imagine simply how much time I had spent for this information! Thanks!
# ExNsGNJsaFIcQD
2019/06/18 1:45 by
pretty handy material, overall I feel this is well worth a bookmark, thanks
# jLvdFnTbVLBZ
2019/06/18 4:55 by
It?s actually a cool and useful piece of information. I?m satisfied that you just shared this helpful info with us. Please keep us up to date like this. Thanks for sharing.
# bhGciyQStfRJ
2019/06/18 21:56 by
Really enjoyed this post.Really looking forward to read more. Fantastic.
# kKDINnGubMgYiJ
2019/06/19 5:52 by
I think this is a real great blog.Really looking forward to read more. Great.
# tUurtxqCPAUOuXEzfW
2019/06/19 21:38 by
Very neat blog post.Thanks Again. Want more.
# FeHeAHcaDDntLCv
2019/06/22 0:48 by
new details about once a week. I subscribed to your Feed as well.
# LnRDhnEFFbCNXRdA
2019/06/22 4:17 by
things or advice. Maybe you could write next articles referring to this article.
# OWdUZzsoqUcIGzUZTHo
2019/06/24 8:09 by
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?
# ZSwVMxWcOHHBXiry
2019/06/24 15:26 by
There is evidently a bundle to know about this. I believe you made certain good points in features also.
# vJPhWPGvhhty
2019/06/25 5:05 by
Woh I love your posts, saved to my bookmarks!.
# RRKxVVGBkZOhdWJ
2019/06/25 21:46 by
Thanks for sharing, this is a fantastic article.Thanks Again. Much obliged.
# yECMmhUwxkHaRNoMbQ
2019/06/26 0:16 by
It as difficult to find well-informed people in this particular topic, but you seem like you know what you are talking about! Thanks
# RhKWrcnjkAflTLZ
2019/06/26 2:47 by
Im grateful for the blog post.Much thanks again. Much obliged.
# sEPmaDNwdBigD
2019/06/26 13:08 by
IaаАа?б?ТТ?а?а?аАа?б?ТТ?аБТ?m glad to become a visitor in this pure web site, regards for this rare info!
# NMLcwbXvFOV
2019/06/26 18:57 by
It as not that I want to duplicate your web page, but I really like the layout. Could you tell me which theme are you using? Or was it tailor made?
# ewGYKxFoYUQRHyB
2019/06/26 19:40 by
you ave gotten an important weblog here! would you like to make some invite posts on my weblog?
# uUagSQuictqJRxeIt
2019/06/26 19:47 by
I think this site holds some very fantastic info for everyone . а?а?а? The public will believe anything, so long as it is not founded on truth.а? а?а? by Edith Sitwell.
# unRPDsdOFTPjQ
2019/06/27 21:00 by
Thanks for sharing, this is a fantastic blog.Thanks Again. Keep writing.
# SFJDIJlgsHFAa
2019/06/28 23:39 by
Some times its a pain in the ass to read what blog owners wrote but this web site is real user genial !.
# FYuRNtykPiCunfioE
2019/06/29 7:02 by
Whoa! This blog looks just like my old one! It as on a completely different topic but it has pretty much the same page layout and design. Excellent choice of colors!
# ihiBPbkCAe
2019/06/29 9:53 by
Your style is very unique compared to other folks I have read stuff from. Thanks for posting when you ave got the opportunity, Guess I all just book mark this page.
# kCHsKBLSXkzSkE
2019/06/29 10:27 by
You have made some good points there. I looked on the web to learn more about the issue and found most individuals will go along with your views on this website.
# UVDbKXSnuVJwbpSzdBV
2019/07/01 16:34 by
I was recommended this website by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my difficulty. You are wonderful! Thanks!
# mgfgWWUKRZuRc
2019/07/03 19:53 by
This awesome blog is without a doubt entertaining as well as amusing. I have discovered many handy stuff out of this blog. I ad love to go back again and again. Thanks a lot!
# jFtEXocVaSKHgxGqWv
2019/07/04 22:58 by
LOUIS VUITTON PURSES LOUIS VUITTON PURSES
# bIKsrVMSshckBP
2019/07/04 23:04 by
Really wonderful info can be found on web site.
# gdffIPmxpbE
2019/07/07 19:30 by
Thanks for sharing this first-class post. Very inspiring! (as always, btw)
# yAVijwnMkLgzgJVyxrQ
2019/07/07 20:56 by
There is certainly a great deal to find out about this subject. I like all the points you ave made.
# ykuVeoaWuovSmVTHE
2019/07/08 16:24 by
Wow, marvelous blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your website is excellent, let alone the content!
# ZTijmctadgaYhhrH
2019/07/08 17:47 by
please visit the internet sites we follow, which includes this one particular, because it represents our picks from the web
# VfvSPZXXDhMTrOJke
2019/07/08 22:55 by
Major thanks for the article post. Really Great.
# bhcdnCaYDCzdRbSLMg
2019/07/09 1:50 by
the sleeping bag which is designed to make
# fHmnztrKdIF
2019/07/09 4:44 by
Very informative article.Really looking forward to read more. Keep writing.
# rSpdQJrbCHfkKuKGtaY
2019/07/09 7:37 by
Thanks a lot for sharing this with all of us you actually know what you are talking about! Bookmarked. Kindly also visit my web site =). We could have a link exchange agreement between us!
# DwAVDYgEmuKqW
2019/07/10 16:56 by
Start wanting for these discount codes early, as numerous merchants will start off
# wmtPUwxVCXqNNdUp
2019/07/10 19:17 by
Wow, superb blog layout! How long have you been blogging for? you make blogging look easy. The overall look of your web site is magnificent, as well as the content!
# vMQnFIMWYFBfvtJ
2019/07/11 0:08 by
What would be your subsequent topic subsequent week in your weblog.*:* a-
# kQcYyXsAkeg
2019/07/11 23:52 by
Thanks so much for the blog article.Really looking forward to read more. Awesome.
# ievRAQKXbM
2019/07/12 17:42 by
There as definately a lot to learn about this subject. I really like all of the points you made.
# YGLPmEibFanxBPnceY
2019/07/15 7:06 by
This particular blog is without a doubt entertaining and also factual. I have found many useful stuff out of this amazing blog. I ad love to visit it again soon. Thanks!
# iUYCagTCDt
2019/07/15 8:39 by
Very good article! We are linking to this particularly great content on our site. Keep up the great writing.
# AHwZnHGKBSslo
2019/07/15 11:46 by
wow, awesome blog post.Really looking forward to read more.
# fuwnRqEZKxVNvfFB
2019/07/15 23:01 by
Now i am very happy that I found this in my search for something regarding this.
# vYrgDDkUtx
2019/07/16 0:45 by
please stop by the internet sites we follow, like this one particular, because it represents our picks in the web
# WskCZmldoSNfLijalym
2019/07/16 2:39 by
Peculiar article, totally what I needed.
# dyEFYYLeUsFvAv
2019/07/16 4:33 by
pretty practical material, overall I imagine this is worth a bookmark, thanks
# EfowLWqqPGYefV
2019/07/16 5:46 by
Im obliged for the blog article.Really looking forward to read more. Much obliged.
# HYTayNEqTCXgKHKd
2019/07/16 10:59 by
Thanks for sharing, it is a fantastic post.Significantly thanks yet again. Definitely Great.
# UtYKFAOLqUMxLtkMNX
2019/07/17 0:31 by
It is advisable to focus on company once you may. It is best to bring up your company to market this.
# UeFoYAuhfGFQNMudXcY
2019/07/17 4:01 by
This is one awesome post.Thanks Again. Really Great.
# cyWtXXsqSiwaeqrIf
2019/07/17 5:46 by
I truly like your weblog submit. Keep putting up far more useful info, we value it!
# QkmHNmMRQmHKq
2019/07/17 7:29 by
Thorn of Girl Excellent information and facts could be identified on this web blog.
# ICbalxOGFUXaph
2019/07/17 9:10 by
Thanks again for the post.Really looking forward to read more. Much obliged.
# pYiwjtJKRsCOBwTWC
2019/07/17 12:27 by
wow, awesome article.Really looking forward to read more. Much obliged.
# xFkAGMSqPQpX
2019/07/18 2:19 by
Wow, great blog.Really looking forward to read more. Fantastic.
# uqYgYFkhWnevnpMokq
2019/07/18 4:41 by
You made some really good points there. I looked on the web to learn more about the issue and found most people will go along with your views on this website.
# uCbKDCPcbD
2019/07/18 14:58 by
Websites we recommend Wow, awesome blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your website is magnificent, as well as the content!
# bUUvZpTCJfsdabwmDd
2019/07/18 16:39 by
When some one searches for his vital thing, so he/she needs to be available that in detail, therefore that thing is maintained over here.
# rnxqgqDGHPe
2019/07/18 18:21 by
There is clearly a bundle to know about this. I consider you made some good points in features also.
# wcKhRLOpACYa
2019/07/18 20:03 by
Wow, great post.Thanks Again. Really Great.
# gcVtXGRpDTc
2019/07/19 18:08 by
It as hard to find experienced people about this topic, however, you seem like you know what you are talking about! Thanks
# BroiwsxgyCqQmLhMls
2019/07/19 19:51 by
Imprinted Items In the digital age, you all find now more strategies of promotional marketing than previously before
# XvVClVSFxP
2019/07/19 21:29 by
Vitamin E is another treatment that is best
# expGsxXvvkiShWqp
2019/07/20 5:39 by
There is certainly a great deal to learn about this topic. I really like all of the points you made.
# HacsLVNmOmQOQGthMNf
2019/07/23 3:00 by
This article will assist the internet visitors for building up new
# gnvoLRBfcnCLyeSQY
2019/07/23 7:57 by
This blog is without a doubt educating and besides amusing. I have found a bunch of handy stuff out of this source. I ad love to come back again soon. Thanks a lot!
# bXkDHEVqwHIm
2019/07/23 22:04 by
It as difficult to find educated people for this subject, however, you seem like you know what you are talking about! Thanks
# AbyCSgcWRaRTNXv
2019/07/24 4:49 by
Title here are some links to sites that we link to because we think they are worth visiting
# reaiArYlZkZOTeeo
2019/07/24 8:09 by
Well I definitely liked reading it. This information procured by you is very effective for correct planning.
# NWKGgxkmVUWA
2019/07/24 11:37 by
There is noticeably a bundle to know about this. I think you made certain good points in features also.
# KGmjyrlyUMvJVyz
2019/07/24 15:11 by
Really enjoyed this blog article.Thanks Again. Really Great.
# WkqpQxWuGxDmDg
2019/07/25 5:04 by
I was recommended this website by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my problem. You are wonderful! Thanks!
# drzLuHdbHQQ
2019/07/25 8:36 by
Really informative article.Really looking forward to read more. Really Great.
# zaNQPMoSkhVmg
2019/07/25 10:21 by
Outstanding quest there. What happened after? Good luck!
# rywaDqGIyWoP
2019/07/25 12:07 by
Regards for this post, I am a big fan of this web site would like to go along updated.
# JbPEGEXpsSjh
2019/07/25 13:57 by
You should participate in a contest for probably the greatest blogs on the web. I all recommend this web site!
# gyuJgjthvOJPO
2019/07/25 15:46 by
I want to be able to write entries and add pics. I do not mean something like myspace or facebook or anything like that. I mean an actual blog..
# OpFELCUQsMOGbMGEJ
2019/07/25 17:42 by
You made some really good points there. I checked on the internet for additional information about the issue and found most individuals will go along with your views on this site.|
# DYyBzmhTZcmzznj
2019/07/25 22:19 by
Subsequently, after spending many hours on the internet at last We ave uncovered an individual that definitely does know what they are discussing many thanks a great deal wonderful post
# RcYROpdNFHth
2019/07/26 0:12 by
It as nearly impossible to find well-informed people about this topic, however, you sound like you know what you are talking about! Thanks
# vEkVvEMyAHbpp
2019/07/26 2:04 by
You, my pal, ROCK! I found exactly the info I already searched everywhere and simply could not find it. What a perfect web site.
# uZpmKMrbqCYg
2019/07/26 16:56 by
This blog is without a doubt entertaining and also factual. I have picked up a bunch of useful stuff out of this amazing blog. I ad love to return again and again. Cheers!
# bYKZNeugSpkwp
2019/07/26 20:16 by
Thanks for an explanation. I did not know it.
# jZaRcSuSFAirM
2019/07/26 20:40 by
Incredible story there. What occurred after? Take care!
# WqufnEtwShAKGQ
2019/07/27 1:21 by
on Aol for something else, Regardless I am here now and would just like
# yAMxyaESywGFKoBTTM
2019/07/27 3:58 by
Simply wanna admit that this is invaluable , Thanks for taking your time to write this.
# iDpKxHgFqx
2019/07/27 14:41 by
I visited a lot of website but I think this one contains something special in it in it
# ofxnkrugoEQUIgedEm
2019/07/27 19:03 by
You got a very wonderful website, Sword lily I detected it through yahoo.
# yGmKEaAYnnqbTgXLA
2019/07/27 19:47 by
reader amused. Between your wit and your videos, I was almost moved to start my own blog (well,
# EXNYCSmJUv
2019/07/28 1:38 by
It is actually difficult to acquire knowledgeable folks using this subject, but the truth is could be observed as did you know what you are referring to! Thanks
# BbQEuyoRVGcCWJYvkO
2019/07/28 8:48 by
Really informative blog post.Really looking forward to read more. Great.
# vyaBYBoLZyHNevz
2019/07/28 13:25 by
There as certainly a lot to learn about this issue. I love all the points you have made.
# LkKibcsxpWEb
2019/07/29 1:17 by
Looking forward to reading more. Great article.Thanks Again. Awesome.
# mStfTzhMZiIjVwUSQyv
2019/07/29 3:45 by
Superb points totally, you may attained a brand brand new audience. Precisely what may perhaps anyone suggest regarding your posting you made a couple of days before? Virtually any particular?
# QRGNcOiaPEgs
2019/07/29 7:23 by
Woah! I am really digging the template/theme of this site. It as simple, yet effective.
# XfhunbYyMxm
2019/07/29 9:00 by
Magnificent web site. Plenty of helpful information here. I am sending it to several buddies ans also sharing in delicious. And certainly, thanks for your sweat!
# YKQWaWfNgZJ
2019/07/29 9:43 by
you have got an amazing weblog right here! would you wish to make some invite posts on my weblog?
# wrKPfITSJMhAKIT
2019/07/29 12:33 by
pretty handy material, overall I believe this is worthy of a bookmark, thanks
# nUpmDbJKJNWwgYnwKsw
2019/07/29 14:06 by
soon it wilpl be well-known, due to itss feature contents.
# SKeZPbaKpxVcTJc
2019/07/29 15:11 by
Utterly written subject matter, thankyou for entropy.
# vpihYcWatuuXBets
2019/07/29 15:58 by
wow, awesome article.Really looking forward to read more. Great.
# WNEknDjveMzGoFJCMqf
2019/07/29 16:47 by
wonderful points altogether, you simply received a logo new reader. What might you suggest in regards to your submit that you made some days ago? Any positive?
# ytgIJjLCvM
2019/07/29 23:02 by
It as hard to come by educated people about this subject, however, you seem like you know what you are talking about! Thanks
# PHYLxwOksqzjWaHCHC
2019/07/29 23:59 by
problems with hackers and I am looking at alternatives for another platform.
# HRjqzRCohHSGTkRRG
2019/07/30 1:42 by
It as difficult to find experienced people in this particular topic, but you seem like you know what you are talking about! Thanks
# WmQlHDwFwG
2019/07/30 16:14 by
My brother recommended I might like this blog. He was totally right. This post actually made my day. You cann at imagine simply how much time I had spent for this info! Thanks!
# nAiKBSEpKA
2019/07/30 21:16 by
Some truly good stuff on this internet website , I like it.
# ioowkqVPEzRAVUXKZ
2019/07/30 23:36 by
Magnificent site. A lot of useful info here.
# TbLIHMGkLp
2019/07/31 2:23 by
I think this is among the most vital info for me.
# qwUPQflKyOalcO
2019/07/31 5:12 by
Spot on with this write-up, I really assume this website wants rather more consideration. IaаАа?б?ТТ?а?а?аАа?б?ТТ?аБТ?ll probably be once more to read far more, thanks for that info.
# NFZUZPdIkhuvt
2019/07/31 9:16 by
Wow, great article.Really looking forward to read more. Want more.
# syOxOpTYfxiboP
2019/07/31 10:35 by
Looking forward to reading more. Great post.Really looking forward to read more. Much obliged.
# qVXMYCRyDPPhdLMz
2019/07/31 12:04 by
Thanks so much for the blog post.Much thanks again. Much obliged.
# rmZGYujRroDomzxF
2019/07/31 14:54 by
You have made some decent points there. I checked on the internet for more information about the issue and found most people will go along with your views on this web site.
# MYiNtwWTOISv
2019/07/31 18:16 by
It as hard to come by experienced people in this particular subject, however, you seem like you know what you are talking about! Thanks
# ssohhPgdUHeqWfdG
2019/07/31 20:32 by
I really liked your article.Really looking forward to read more. Keep writing.
# uILbqGrysFiqSVYS
2019/07/31 23:18 by
new details about once a week. I subscribed to your Feed as well.
# ElyAOovOUywwExJ
2019/08/01 3:10 by
you are saying and the way in which during which you say it.
# IMzfgwLwvuJbQJyKZhW
2019/08/01 18:59 by
This actually answered my own problem, thank an individual!
# YjyDIHlFhNhmqKx
2019/08/05 19:01 by
Your style is so unique in comparison to other folks I ave read stuff from. I appreciate you for posting when you ave got the opportunity, Guess I will just book mark this web site.
# fZgNSvYdhqUt
2019/08/05 21:20 by
Touche. Solid arguments. Keep up the amazing effort.
# UUGRvIqaFlBRJ
2019/08/06 20:22 by
I'а?ve learn several excellent stuff here. Certainly worth bookmarking for revisiting. I wonder how a lot attempt you set to make the sort of wonderful informative web site.
# jQxoQaWMJBBBppDSDWF
2019/08/07 2:44 by
You made some good 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 site.
# UNrwEXoCcfZNEkOQyt
2019/08/07 4:43 by
Your style is unique in comparison to other people I have read stuff from. Many thanks for posting when you have the opportunity, Guess I all just book mark this blog.
# jqLojTnwpIdA
2019/08/07 13:42 by
There is definately a lot to learn about this subject. I love all the points you ave made.
# NMFKbNDsFADmyolNsg
2019/08/08 4:16 by
Woah! I am really loving the template/theme of this blog.
# wcZihsAFjJ
2019/08/08 18:25 by
stuff prior to and you are just extremely fantastic. I actually like what you ave received
# ULGLnLaHFTza
2019/08/08 20:25 by
Thanks again for the article post.Much thanks again.
# vtznaidJOdvtzGE
2019/08/08 22:28 by
Thanks-a-mundo for the article.Thanks Again.
# rqYhFrJItcfzGnj
2019/08/09 2:31 by
wow, superb blog post.Really pumped up about read more. Really want more.
# sctKvcBNJsB
2019/08/09 6:38 by
I?d should verify with you here. Which is not something I often do! I take pleasure in reading a publish that may make individuals think. Also, thanks for allowing me to comment!
# HNNFGdayOpnp
2019/08/12 23:40 by
We stumbled over here by a different page and thought I might check things out. I like what I see so now i am following you. Look forward to looking at your web page for a second time.
# hjvLPnKtJET
2019/08/13 3:50 by
It as not that I want to replicate your web-site, but I really like the design. Could you tell me which design are you using? Or was it especially designed?
# FZhrIwMaYMKE
2019/08/13 5:54 by
Well I definitely enjoyed reading it. This subject procured by you is very effective for good planning.
# chzKiJhztKND
2019/08/13 7:51 by
You made some first rate points there. I seemed on the web for the issue and found most people will associate with together with your website.
# UeZIkfCfOiY
2019/08/14 1:21 by
There is noticeably a lot to identify about this. I feel you made certain good points in features also.
# PZELCrtraB
2019/08/14 3:24 by
Some truly great blog posts on this web site , thanks for contribution.
# bddbWqPbDqpBCUoD
2019/08/14 5:28 by
There is definately a lot to find out about this issue. I like all the points you have made.
# DaohhvLUYtHc
2019/08/15 8:51 by
It as going to be ending of mine day, except before end
# WbItzrIRFfzfKgwLP
2019/08/16 22:50 by
It as hard to come by experienced people about this subject, however, you seem like you know what you are talking about! Thanks
# kHkOGvjxkOOuy
2019/08/18 22:49 by
Loving the info on this internet site , you have done great job on the articles.
# kXlSHiKyBZh
2019/08/19 0:54 by
I will start writing my own blog, definitely!
# HvTkssEpvm
2019/08/20 2:22 by
Sweet blog! I found it while searching on Yahoo News. Do you have any tips on how to get listed in Yahoo News? I ave been trying for a while but I never seem to get there! Cheers
# qPiSvuVGvg
2019/08/20 6:27 by
Im grateful for the article post.Thanks Again. Really Great.
# BBjjUFUygkVAbwMLTy
2019/08/20 10:33 by
Its such as you read my thoughts! You appear to grasp so much about
# VQcqdcESifNALOfS
2019/08/20 14:42 by
very few sites that come about to become comprehensive beneath, from our point of view are undoubtedly effectively worth checking out
# EayNaCDZnvItTGpj
2019/08/20 16:50 by
Utterly indited content , appreciate it for entropy.
# JGUvHzHRmeaufmcvqmV
2019/08/21 1:27 by
In any case I all be subscribing to your rss feed and I hope
# GyQYvloKTgLYE
2019/08/21 5:40 by
you know. The design and style look great though!
# JGXmffgLYtnsvY
2019/08/22 4:08 by
you will absolutely obtain fastidious experience.
# QlHOuTMjUuG
2019/08/26 19:48 by
It as hard to come by experienced people on this topic, however, you sound like you know what you are talking about! Thanks
# qGjYjyAhMRsGKth
2019/08/26 22:04 by
The website style is ideal, the articles is really excellent :
# ybxPrRnuuFuPa
2019/08/27 4:43 by
This rather good phrase is necessary just by the way
# lTLpcHLQXFHWtovX
2019/08/27 9:07 by
Well I really enjoyed studying it. This article offered by you is very practical for proper planning.
# SiLHdacSPkYXHOTz
2019/08/28 2:45 by
Some genuinely good content on this internet site , regards for contribution.
# zEaIUgcnIRtmeT
2019/08/28 5:28 by
Wow that was odd. I just wrote an incredibly long comment but after I clicked submit my comment didn at show up. Grrrr well I am not writing all that over again. Anyway, just wanted to say great blog!
# nYsNuywFGPB
2019/08/28 7:39 by
you have a terrific blog here! would you like to create some invite posts on my blog?
# SDFqJikBpVMhQyLlGO
2019/08/28 9:49 by
Looking forward to reading more. Great article post.Really looking forward to read more. Want more.
# VpXvKwGUewzXETh
2019/08/28 12:02 by
Some really good content on this site, appreciate it for contribution.
# fZbmgelNRSP
2019/08/30 6:08 by
Well I really enjoyed reading it. This post procured by you is very constructive for correct planning.
# YxVKdbSQzADGTGZe
2019/08/30 13:23 by
Wow, amazing blog layout! How long have you been blogging for? you make blogging look easy. The overall look of your web site is great, let alone the content!
# hkbnGQXUylb
2019/09/02 18:15 by
Simply a smiling visitor here to share the love (:, btw outstanding style and design.
# QjxAUCSvEfEVXnoWD
2019/09/03 7:53 by
This unique blog is really educating additionally informative. I have picked many helpful advices out of it. I ad love to visit it again and again. Cheers!
# LWwYIyiaHv
2019/09/03 10:08 by
The best solution is to know the secret of lustrous thick hair.
# zVuHrDukNIegfxpodeo
2019/09/04 16:59 by
I truly appreciate this article post. Want more.
# bhkRNYtmLp
2019/09/10 4:27 by
My searches seem total.. thanks. Is not it great once you get a very good submit? Great ideas you have here.. Enjoying the publish.. best wishes
# xZvJieRqTT
2019/09/11 8:38 by
Magnificent items from you, man. I have keep in mind your stuff prior to and you are just too
# LBVOJwuqBgiNnvzSS
2019/09/11 15:45 by
Usually I do not read article on blogs, but I wish to say that this write-up very forced me to check out and do it! Your writing taste has been amazed me. Thanks, quite great article.
# rgMnJXDiunhKUf
2019/09/11 19:10 by
I think this is a real great blog.Really looking forward to read more. Will read on...
# qOOoqTCtlfiQ
2019/09/11 22:10 by
I truly appreciate this article. Really Great.
# DWPaIUyaPIZG
2019/09/11 22:39 by
It was hard It was hard to get a grip on everything, since it was impossible to take in the entire surroundings of scenes.
# sRxoWQoaeX
2019/09/12 5:18 by
I think other web site proprietors should take this website as an model, very clean and magnificent user friendly style and design, let alone the content. You are an expert in this topic!
# AAGHaiCqpNkz
2019/09/12 6:19 by
The Birch of the Shadow I believe there may possibly become a several duplicates, but an exceedingly helpful checklist! I have tweeted this. Lots of thanks for sharing!
# PApqIRbAKkWGkM
2019/09/12 8:47 by
Really informative post.Much thanks again. Great.
# seiLXQCXhHkMcovsEZ
2019/09/13 0:31 by
You made some really good points there. I looked on the web for more info about the issue and found most individuals will go along with your views on this site.
# BMSFJmaUIcwRaxbHQa
2019/09/13 9:55 by
Thanks again for the blog article. Great.
# RtlHdCvpONZSeBylJZ
2019/09/13 13:19 by
I truly appreciate this post. I ave been looking all over for this! Thank goodness I found it on Bing. You have made my day! Thx again..
# zNYWakAjXaSg
2019/09/13 14:33 by
Major thankies for the post.Much thanks again. Really Great.
# GdPJVloPJX
2019/09/14 7:42 by
It as best to take part in a contest for one of the best blogs on the web. I all recommend this site!
# wuEOmpczCSItSVyBBPQ
2019/09/14 13:30 by
So content to have found this post.. Good feelings you possess here.. Take pleasure in the admission you made available.. So content to get identified this article..
# QvOuQBPzFIFdNGgdGUB
2019/09/14 15:59 by
logiciel de messagerie pour mac logiciel sharepoint
# xseHnwMBFKIdBRDx
2019/09/14 18:29 by
Thanks for sharing, this is a fantastic post. Great.
# koOlaZEaYP
2019/09/14 18:42 by
Very neat blog article.Much thanks again. Great.
# fsBhDgjkEQdpItTVUO
2019/09/15 2:40 by
It as not that I want to duplicate your website, but I really like the design and style. Could you tell me which theme are you using? Or was it custom made?
# AKwfIIFtuEAZGhYG
2019/09/15 15:52 by
Wow, this post is fastidious, my sister is analyzing such things, thus I am going to let know her.|
# VdafTKLFZaEsVEtjOX
2019/09/15 19:04 by
Utterly written articles, Really enjoyed looking at.
# ybLnjzsvEXfBy
2019/09/16 22:36 by
Your article is brilliant. The points you make are valid and well represented. I have read other articles like this but they paled in comparison to what you have here.
# stSXXzqoxUOiT
2021/07/03 2:16 by
You have made some really good points there. I looked on the web to learn more about the issue and found most people will go along with your views on this website.
# QsSztLIBLmxqcrMXNbt
2021/07/03 3:44 by
Thanks for the article post. Keep writing.
# re: ???????
2021/07/07 22:00 by
malaria drug chloroquine
https://chloroquineorigin.com/# hydroxychloroquine sulfate 200 mg tab
# re: ???????
2021/07/14 0:20 by
cloraquine
https://chloroquineorigin.com/# hydroxychloroquine treats
# Great looking website. Presume you did a bunch of your very own html coding.
2021/11/03 16:18 by
Great looking website. Presume you did a bunch of your
very own html coding.
# wfzzbcvmlkjc
2021/11/29 8:31 by
# afuwztrfoeoy
2021/12/03 0:30 by
# pslitxgenrsa
2022/05/08 2:55 by