Skip to content

Instantly share code, notes, and snippets.

@tanaka-takayoshi
Created December 21, 2013 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanaka-takayoshi/8066817 to your computer and use it in GitHub Desktop.
Save tanaka-takayoshi/8066817 to your computer and use it in GitHub Desktop.
PowerShell から C#のXAMLを読み込んでWPFとして起動するサンプル。 XAMLコードは、 https://github.com/Grabacr07/XamClaudia から二次利用。
$assemblies = (
"System",
"PresentationCore",
"PresentationFramework",
"System.Windows.Presentation",
"System.Xaml",
"WindowsBase",
"System.Xml"
)
$source = @"
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Markup;
public class Program
{
//もはやSTAThread指定いらなくなった
//[STAThread]
public static void Run(string xaml)
{
var app = new Application();
var window = (Window)XamlReader.Load(new MemoryStream(Encoding.UTF8.GetBytes(xaml)));
app.Run(window);
}
}
"@
$xaml = @"
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="XamClaudiaPS1" Height="350" Width="525">
<Window.Resources>
<LinearGradientBrush x:Key="ブラシ_髪"
EndPoint="0.5,1"
StartPoint="0.5,0">
<GradientStop Color="#FFFEF3BD" />
<GradientStop Color="#FFFEDF93"
Offset="1" />
</LinearGradientBrush>
<Color x:Key="色_髪_輪郭">Black</Color>
<SolidColorBrush x:Key="ブラシ_髪_輪郭"
Color="Black" />
<LinearGradientBrush x:Key="ブラシ_髪_影"
EndPoint="0.5,1"
StartPoint="0.5,0">
<GradientStop Color="#FFDFBE78"
Offset="0" />
<GradientStop Color="#FFDEB86D"
Offset="1" />
</LinearGradientBrush>
<LinearGradientBrush x:Key="ブラシ_肌"
EndPoint="0.5,1"
StartPoint="0.5,0">
<GradientStop Color="#FFFDEADB"
Offset="1" />
<GradientStop Color="#FFFDEAD9" />
</LinearGradientBrush>
<SolidColorBrush x:Key="ブラシ_肌_影"
Color="#FFF1C6B9" />
<Color x:Key="色_肌_輪郭">Black</Color>
<SolidColorBrush x:Key="ブラシ_肌_輪郭"
Color="Black" />
<LinearGradientBrush x:Key="ブラシ_肌_影2"
EndPoint="0.5,1"
StartPoint="0.5,0">
<GradientStop Color="#FFE1A292" />
<GradientStop Color="#FFEDB9AC"
Offset="1" />
</LinearGradientBrush>
<SolidColorBrush x:Key="ブラシ_セーター"
Color="#FFFEF0D9" />
<SolidColorBrush x:Key="ブラシ_セーター_輪郭"
Color="Black" />
<SolidColorBrush x:Key="ブラシ_セーター_影"
Color="#FFDCC7AC" />
<SolidColorBrush x:Key="ブラシ_シャツ"
Color="White" />
<SolidColorBrush x:Key="ブラシ_シャツ_輪郭"
Color="Black" />
<SolidColorBrush x:Key="ブラシ_影"
Color="#3F000000" />
<SolidColorBrush x:Key="ブラシ_シャツ_影"
Color="#FFD1D2D4" />
<SolidColorBrush x:Key="ブラシ_イヤリング_耳あて"
Color="#FFFFFFFE" />
<SolidColorBrush x:Key="ブラシ_イヤリング_耳あて_輪郭"
Color="Black" />
<RadialGradientBrush x:Key="ブラシ_イヤリング">
<GradientStop Color="#FFD1EAEF"
Offset="0" />
<GradientStop Color="#FF3791CF"
Offset="1" />
</RadialGradientBrush>
<SolidColorBrush x:Key="ブラシ_虹彩"
Color="#FF5BBFB2" />
<SolidColorBrush x:Key="ブラシ_瞳孔"
Color="#FF016B6E" />
<SolidColorBrush x:Key="ブラシ_ハイライト"
Color="White" />
<SolidColorBrush x:Key="ブラシ_瞼"
Color="Black" />
<SolidColorBrush x:Key="ブラシ_虹彩_輪郭"
Color="Black" />
<SolidColorBrush x:Key="ブラシ_瞳_影"
Color="#66000032" />
<SolidColorBrush x:Key="ブラシ_メガネ_フレーム"
Color="#FFBF1B21" />
<LinearGradientBrush x:Key="ブラシ_メガネ_レンズ"
EndPoint="0.5,1"
StartPoint="0.5,0">
<GradientStop Color="#00FFFFFF"
Offset="1" />
<GradientStop Color="#7FFFFFFF"
Offset="0.5" />
</LinearGradientBrush>
<SolidColorBrush x:Key="ブラシ_口"
Color="#FFF4AD9A" />
<LinearGradientBrush x:Key="ブラシ_口_輪郭"
EndPoint="0.5,1"
StartPoint="0.4,0">
<GradientStop Color="Black"
Offset="0.6" />
<GradientStop Offset="0.8" />
<GradientStop Color="#00000000" />
<GradientStop Color="Black"
Offset="0.353" />
</LinearGradientBrush>
<SolidColorBrush x:Key="ブラシ_髪_光"
Color="#BFFFFFFF" />
</Window.Resources>
<Grid>
<UserControl ClipToBounds="True">
<Viewbox x:Name="LayoutRoot"
VerticalAlignment="Bottom">
<Grid Margin="0,0,0,-15">
<Grid x:Name="服"
Height="370.167"
Margin="340.576,0,134.094,4"
VerticalAlignment="Bottom">
<Path x:Name="シャツ"
Data="M732.66667,659.66633 L798.66635,709.66665 754.66625,939.00169 603.33362,938.33471 428.66839,747.00042 456.00125,658.99998 z"
Fill="{DynamicResource ブラシ_シャツ}"
Margin="0,88.167,138.333,0"
Stretch="Fill"
StrokeThickness="2" />
<Path Data="M270.5769,332.4365 C276.1962,346.63315 281.1917,357.60265 292.57187,368.66124"
HorizontalAlignment="Right"
Height="38.038"
Margin="0,0,216.761,0.506"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_シャツ_輪郭}"
VerticalAlignment="Bottom"
Width="23.857" />
<Path Data="M281.67208,188.51151 C278.29371,217.76147 276.86802,253.27811 277.55461,265.02326 277.55418,265.8622 300.55292,335.08596 315.18427,362.31827"
HorizontalAlignment="Right"
Margin="0,0,195.178,7.868"
Stretch="Fill"
Width="37.762"
Stroke="{DynamicResource ブラシ_シャツ_輪郭}"
Height="173.825"
VerticalAlignment="Bottom" />
<Path Data="M263.54152,367.66024 C242.97063,340.41445 220.49695,283.57362 214.49059,277.56735 202.12179,261.54488 182.79561,247.31356 155.92983,235.02328"
Height="133.637"
Margin="155.93,0,245.791,1.507"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_シャツ_輪郭}"
VerticalAlignment="Bottom" />
<Path Data="M264.04205,314.60509 L322.10297,318.10932 275.05405,342.63675 z"
HorizontalAlignment="Right"
Height="29.03"
Margin="0,0,187.23,26.532"
Stretch="Fill"
VerticalAlignment="Bottom"
Width="59.061"
Fill="{DynamicResource ブラシ_影}" />
<Path Data="M209.98585,348.13994 L198.97197,316.35541 143.2517,289.4124 z"
Fill="{DynamicResource ブラシ_影}"
HorizontalAlignment="Left"
Height="60.728"
Margin="141.249,0,0,26.532"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Bottom"
Width="68.736" />
<Path x:Name="左セーター"
Data="M582.68072,955.66116 L389.99969,777 C380.42141,761.32363 376.19115,746.69909 376.66636,733 L384.66603,663 320.26435,732.83334 304.93136,954.83334 z"
Fill="{DynamicResource ブラシ_セーター}"
Margin="-34.395,76.834,0,0.672"
Stretch="Fill"
StrokeThickness="2"
HorizontalAlignment="Left"
Width="277.749"
Stroke="{DynamicResource ブラシ_セーター_輪郭}" />
<Path Data="M-34.451103,148.76294 L33.985474,89.796702 C26.454151,112.18724 24.162009,187.04074 27.109048,215.3151 31.202159,203.05743 40.8619,164.32319 40.534451,171.67779 41.516798,174.29276 44.955011,183.11829 50.503289,191.78477 50.503289,191.78477 80.810021,219.89159 107.98855,244.73375 80.974384,244.89719 46.264806,239.66726 22.836618,248.71581 13.10519,288.81822 12.706933,328.19674 18.852226,367.06774 L-26.480147,366.57046 z"
HorizontalAlignment="Left"
Margin="-34.769,89.583,0,1.506"
Stretch="Fill"
Width="143.115"
Fill="{DynamicResource ブラシ_セーター_影}" />
<Path Data="M208.98481,367.66024 C136.46322,311.40206 69.416495,252.21878 12.780677,187.47318 8.2172328,166.87117 6.423651,147.52043 6.2737674,128.91221"
HorizontalAlignment="Left"
Margin="5.274,127.912,0,1.507"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_セーター_輪郭}"
Width="204.711" />
<Path x:Name="右セーター"
Data="M937.9997,938.33324 C924.48984,791.66752 907.01328,693.20521 881.99969,686.33332 873.09746,679.59273 830.2305,670.3821 766.66667,659.66633 778.76108,693.41564 782.99027,729.76529 778.13354,769.11884 769.22817,828.05375 753.91624,884.98354 733.4452,938.33325 z"
Fill="{DynamicResource ブラシ_セーター}"
HorizontalAlignment="Right"
Margin="0,89.833,0,1.667"
Stretch="Fill"
StrokeThickness="2"
Width="204.167"
Stroke="{DynamicResource ブラシ_セーター_輪郭}" />
<Path Data="M771.93891,822.30877 C828.02809,840.38705 856.00086,850.47133 861.56474,859.37158 866.34188,832.94116 869.96501,810.51729 872.19554,793.48189 832.87486,762.79685 806.04656,740.11773 780.6071,713.5899 782.56971,720.50869 788.0429,747.90033 771.93891,822.30877 z"
Fill="{DynamicResource ブラシ_セーター_影}"
HorizontalAlignment="Right"
Margin="0,140.333,65.167,82.334"
Stretch="Fill"
StrokeThickness="2"
Width="102.166" />
<Path x:Name="左シャツ影"
Data="M53.877502,121.74884 L108.88135,190.47947 C108.88135,190.47947 233.01004,247.03637 237.01419,250.53989 241.01835,254.04342 243.52071,276.06502 243.52071,276.06502 219.17117,262.97273 194.08873,253.8177 167.44186,250.03852 139.93053,246.29373 133.44791,246.04129 110.36278,244.57037 86.786489,223.7326 56.57936,194.31432 51.422046,190.14646 43.794313,177.93616 38.440275,164.62486 36.932448,149.4511 z"
HorizontalAlignment="Left"
Margin="36.954,121.743,0,93.102"
Stretch="Fill"
Width="207.567"
Fill="{DynamicResource ブラシ_影}" />
<Path x:Name="右シャツ影"
Data="M400.01721,184.47048 C355.16522,195.17972 305.88189,233.79828 254.03239,288.57896 L252.03048,203.49044 308.08874,102.88632 C343.53918,116.49729 373.81199,144.73747 400.01721,184.47048 z"
Margin="252.03,102.886,109.316,80.588"
Stretch="Fill"
Fill="{DynamicResource ブラシ_影}" />
<Path Data="M806.5,671.333 C818.44288,691.81284 818.80662,736.29498 802.5,815.33301 792.90889,857.60542 781.90204,896.699 767.6531,936.67442"
HorizontalAlignment="Right"
Margin="0,100.5,121.862,2.334"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_セーター_輪郭}"
Width="49.471" />
<Path Data="M900,936.33301 C888.56998,909.895 876.03031,884.78161 861,856.83301 852.966,830.551 847.58577,807.53158 844.5,787.33301"
HorizontalAlignment="Right"
Height="150"
Margin="0,0,37,2.667"
Stretch="Fill"
VerticalAlignment="Bottom"
Width="56.5"
Stroke="{DynamicResource ブラシ_シャツ_輪郭}">
<Path.OpacityMask>
<LinearGradientBrush EndPoint="0.5,1"
StartPoint="0.5,0">
<GradientStop Color="Black"
Offset="1" />
<GradientStop Color="#7FFFFFFF"
Offset="0.006" />
</LinearGradientBrush>
</Path.OpacityMask>
</Path>
<Path Data="M772.28457,616.52422 C795.43057,666.18778 814.10152,712.40186 834.5,760.83301 771.61561,703.71018 756.09841,687.49484 735.86607,686.9897 735.86607,686.9897 729.7962,616.0191 772.28457,616.52422 z"
Fill="{DynamicResource ブラシ_シャツ_影}"
HorizontalAlignment="Right"
Margin="0,46.247,103.5,179.075"
Stretch="Fill"
StrokeThickness="2"
Width="99.796"
Stroke="{DynamicResource ブラシ_シャツ_輪郭}" />
<Path Data="M664,570.833 C693.30755,576.64371 727.88334,590.27223 770.5,615.83301 762.34436,616.73883 756.6533,620.37843 753.5,626.83301 744.86293,680.84207 727.58235,726.46658 705.05625,770.48631"
Fill="{DynamicResource ブラシ_シャツ}"
Margin="235.333,0,166.5,168.514"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_シャツ_輪郭}"
StrokeThickness="2" />
<Path Data="M678.66667,592.333 C698.33435,600.23874 711.62481,610.74742 720.66635,622.99967 723.24889,673.03057 717.25725,709.78892 704.66616,736.33154"
Fill="{DynamicResource ブラシ_シャツ_影}"
Height="146"
Margin="250,21.5,215.743,0"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Top" />
<Path Data="M458.5,684.583 C453.97658,715.12267 453.49206,746.95422 455.5,779.58301 466.62084,739.0618 482.88777,692.11691 490.75009,678.83301 L462.4997,667.08301"
Fill="{DynamicResource ブラシ_シャツ_影}"
HorizontalAlignment="Left"
Margin="25.706,96.25,0,159.417"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_シャツ_輪郭}"
StrokeThickness="2"
Width="38.377" />
<Path Data="M504,580.833 C478.4902,607.08044 462.49694,641.82456 458,686.83301 461.8756,674.87335 463,671.58301 467.25,677.08301 473.5,686.08301 498.67178,756.47153 503,759.83301 504.26481,763.38057 556.82219,783.87268 577.46523,791.21628"
Margin="29.333,10,0,147.784"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_シャツ_輪郭}"
StrokeThickness="2"
Fill="{DynamicResource ブラシ_シャツ}"
HorizontalAlignment="Left"
Width="121.465" />
<Path Data="M471.76391,635.94861 C482.69549,641.41205 492.23739,647.76207 499.66701,652.33301 514.95945,698.55129 533.6943,737.6471 556.33269,768.66634 L554.66638,593.99957 508.14736,579.77611 C498.79923,588.65244 483.76232,604.3747 471.76391,635.94861 z"
Fill="{DynamicResource ブラシ_シャツ_影}"
Margin="43.083,9,0,170.334"
Stretch="Fill"
StrokeThickness="2"
HorizontalAlignment="Left"
Width="86.583" />
<Path Data="M790.18834,714.23963 C803.12457,731.07524 796.04074,796.1349 780.67816,878.66184"
HorizontalAlignment="Right"
Margin="0,122.741,58.875,82.004"
Stretch="Fill"
Width="17.244"
Stroke="{DynamicResource ブラシ_セーター_輪郭}"
Opacity="0.5" />
<Path Data="M844.75,787.333 C844.75,785.583 830.75,731.08301 830.75,731.08301 L856,794.83301"
Fill="{DynamicResource ブラシ_セーター_影}"
HorizontalAlignment="Right"
Margin="0,159.5,83.75,146.917"
Stretch="Fill"
StrokeThickness="2"
Width="25.25" />
<Path Data="M867.54589,864.8216 C873.33807,831.12347 879.81384,794.16534 883.16545,785.58577 882.3703,823.19367 883.42291,874.24063 888.96412,910.90869 881.22895,893.44486 874.02786,877.86496 867.54589,864.8216 z"
Fill="{DynamicResource ブラシ_セーター_影}"
HorizontalAlignment="Right"
Height="127.586"
Margin="0,0,48.309,28.081"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Bottom"
Width="23.483" />
</Grid>
<Grid x:Name="髪_最背">
<Path x:Name="髪_最背_1"
Data="M724.5,484 C715.55473,545.86972 698.73081,592.05671 674.5,623.5 L674,526 C669.22589,575.69195 649.78006,607.22774 618,623.5 619.39428,602.35066 618.8369,583.07876 616,566 611.32958,588.16716 603,603.5 586,627 L563,602.5 535,643 468.5,608.5 481,642 C444.96972,630.29421 413.71566,613.70574 386,593.5 L345,519 326,393 363.5,194 452,150.5 598,156.5 673.5,298.5 z"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_髪_輪郭}"
Height="493.5"
Margin="326.5,150.75,258,316.75"
StrokeThickness="2"
Fill="{DynamicResource ブラシ_髪_影}" />
<Path x:Name="髪_最背_2"
Data="M375.83333,525.16667 C387.07662,566.86855 406.03701,605.60639 428.25,642.25 411.30236,635.52325 394.61202,627.09638 378.25,616.5 351.81913,594.3796 333.58969,563.94089 323.25,525.5 327.804,559.09464 341.42412,590.23949 366.5,618.25 347.60319,610.25951 330.6767,599.15666 316,584.5 300.46584,567.46083 289.24825,547.95424 282.75,525.75 L277,484.5 275.5,391.16667 336.83333,387.49965 377.16667,507.16667"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_髪_輪郭}"
Width="153.75"
Height="255.75"
HorizontalAlignment="Left"
Margin="277.125,388.5,0,0"
VerticalAlignment="Top"
StrokeThickness="2"
Fill="{DynamicResource ブラシ_髪_影}" />
</Grid>
<Grid x:Name="首"
Height="370.334"
Margin="424.24,0,362.763,45.982"
VerticalAlignment="Bottom">
<Path Data="M680.16667,529.66634 C681.58089,558.13638 681.5,595.66634 690,637.33301 695.33333,654.16634 697.7299,660.86442 707.49987,671.16641 L709.33322,741.33341 C707.01761,770.3461 697.66667,791.66686 687.33316,810.66681 679.99964,823.66689 683.24316,860.71859 696.66667,898.00063 L662.99935,844.00023 C659.43661,838.44215 654.54825,833.45695 647.66569,829.33356 L575.99692,790.66686 C561.74513,781.18125 548.60263,765.66859 537.32932,740.00015 L541.99674,667.0001 C536.82565,624.66678 526.70849,579.20924 514.32916,536.66666"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
StrokeThickness="2"
Fill="{DynamicResource ブラシ_肌}" />
<Path Data="M85.798385,229.26329 C61.571461,226.3532 40.589318,223.62375 29.337097,219.78161 L33.15213,227.45521 z"
HorizontalAlignment="Left"
Height="10.532"
Margin="28.388,0,0,140.12"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Bottom"
Width="58.427"
Fill="{DynamicResource ブラシ_肌_影2}" />
<Path Data="M522.48631,558.80857 C531.34408,594.73575 539.68382,629.49553 544.29446,666.02417 560.31988,683.86026 575.9066,696.31825 590.3327,698.99967 608.87673,702.72301 625.53056,698.57668 639.99926,685.33273 665.58036,664.11629 682.37618,644.28072 684.35219,616.89224 681.21592,592.94285 679.74187,568.02326 678.67154,544.16421"
Height="158.156"
Margin="8.167,14.5,25,0"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Top"
Fill="{DynamicResource ブラシ_肌_影2}" />
<Path Data="M32.224039,227.36959 C48.838299,227.88095 66.555438,228.66172 86.030008,229.87177 94.714548,232.12481 102.69728,235.76198 110.05494,240.63401"
Height="13.263"
Margin="32.224,0,87.945,129.701"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Bottom"
Stroke="{DynamicResource ブラシ_肌_輪郭}" />
<Path Data="M198.90589,212.6598 C190.21973,218.50336 182.5033,225.32872 176.3372,233.72369"
HorizontalAlignment="Right"
Height="23.064"
Margin="0,0,0.094,135.61"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
StrokeThickness="2"
VerticalAlignment="Bottom"
Width="24.569" />
<Path Data="M621.30154,755.34269 L619.68661,688.07739 C610.22771,677.23609 605.8879,665.28115 601.69175,649.39396 601.69175,685.74909 614.63151,719.23324 621.30154,755.34269 z"
Fill="{DynamicResource ブラシ_肌_影2}"
HorizontalAlignment="Right"
Margin="0,103.829,1.846,158.677"
Stretch="Fill"
StrokeThickness="2"
Width="21.315" />
<Path Data="M176.58799,99.064471 C181.01733,112.48097 195.39694,129.48948 197.90426,141.77649 187.62303,130.74249 180.85098,122.13429 178.34331,112.35448 178.09255,110.84991 176.58799,99.064471 176.58799,99.064471 z"
Fill="{DynamicResource ブラシ_肌_輪郭}"
HorizontalAlignment="Right"
Height="42.713"
Margin="0,99.733,1.846,0"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Top"
Width="21.315" />
<Path Data="M24.458474,114.69508 C27.486118,147.31694 26.252297,178.85321 22.118493,209.65073 24.927942,220.20947 31.13061,227.87882 39.169794,238.07031 33.728307,228.09253 29.081504,220.82694 27.802273,210.98796 28.423105,184.72006 28.812888,159.7125 29.892392,141.69428 z"
Fill="{DynamicResource ブラシ_肌_輪郭}"
HorizontalAlignment="Left"
Margin="22.118,114.695,0,132.264"
Stretch="Fill"
StrokeThickness="2"
Width="17.052" />
<Path Data="M52.933271,252.33441 C67.444107,255.12098 79.845033,258.42194 89.826002,262.31285 96.759213,269.04111 102.12601,275.96946 106.37779,283.04024 82.68537,271.09071 61.738626,261.33036 52.933271,252.33441 z"
Height="32.098"
Margin="52.586,0,92.623,86.332"
Stretch="Fill"
VerticalAlignment="Bottom"
Fill="{DynamicResource ブラシ_肌_影2}" />
<Path Data="M5.9776962,36.623944 L75.689904,88.281417 C86.054992,96.139764 107.78781,94.802724 117.31681,85.273013 L168.97379,31.107175"
Height="62.29"
Margin="6.571,26.594,30.434,0"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Top"
Fill="{DynamicResource ブラシ_肌_輪郭}" />
<Path Data="M21.61703,89.033862 L31.82791,149.30795"
HorizontalAlignment="Left"
Height="62.435"
Margin="20.617,88.034,0,0"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
VerticalAlignment="Top"
Width="12.283"
Opacity="0.5" />
</Grid>
<Grid x:Name="耳"
HorizontalAlignment="Right"
Height="88.648"
Margin="0,378.971,293.802,0"
VerticalAlignment="Top"
Width="53.618">
<Path Data="M645.33333,396.66667 C648.35681,383.92969 655.77974,375.26749 668.66698,371.66632 674.60202,370.72859 679.51461,371.50075 682.33314,374.99937 688.14868,383.37605 691.07971,395.96539 689.28909,414.71318 688.14953,432.87487 678.21148,450.00922 671.53211,455.94728 663.66139,462.8011 651.28021,466.94659 642.04604,464.35875 z"
Margin="3.75,0,0,0"
Stretch="Fill"
Fill="{DynamicResource ブラシ_肌_影2}"
Stroke="{DynamicResource ブラシ_肌_輪郭}" />
<Path Data="M647.33407,398.25573 C647.34023,410.47205 647.34004,423.16118 647.33438,436.25573"
Fill="{DynamicResource ブラシ_肌}"
Margin="13.116,26.452,25.324,30.37"
Stretch="Fill" />
<Path Data="M683.11037,435.61862 C679.79016,434.21541 675.98508,433.63996 671.58302,434.08368 668.58928,434.88321 664.45856,436.63096 659.58364,438.99936 L636.58481,452.32911 640.5031,465.01805 C648.50223,466.71373 656.89574,464.71466 664.41867,460.49559 673.72371,455.64943 679.12634,445.56034 683.11037,435.61862 z"
Height="29.938"
Margin="0,0,6.118,0.997"
Stretch="Fill"
VerticalAlignment="Bottom"
Fill="{DynamicResource ブラシ_肌}"
StrokeThickness="0" />
<Path Data="M677.97259,408.35092 C677.97259,408.35092 673.86989,425.23155 672.97581,428.70561 672.31927,431.51755 670.99477,433.18527 668.83313,434.49967 L648.16371,447.20322"
Margin="11.581,36.911,12.201,20.154"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
Opacity="0.5" />
</Grid>
<Grid x:Name="イヤリング"
HorizontalAlignment="Right"
Margin="0,445,296,458"
Width="43.687">
<Rectangle Height="15"
Margin="10.161,0,18.526,0"
VerticalAlignment="Top"
Fill="{DynamicResource ブラシ_イヤリング_耳あて}"
RenderTransformOrigin="0.5,0.5"
Stroke="{DynamicResource ブラシ_イヤリング_耳あて_輪郭}">
<Rectangle.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="41.988" />
<TranslateTransform />
</TransformGroup>
</Rectangle.RenderTransform>
</Rectangle>
<Path Data="M2.2645893,2 L41.686588,2 L41.686588,43.098 L2.2645893,43.098 z M2,21.808844 L41.330925,22.361937 M22.445848,2.2648361 L21.777081,43.726895"
Margin="0,14.009,0,0"
RenderTransformOrigin="0.503028256766017,0.49312336440942"
Stretch="Fill"
StrokeThickness="4"
Stroke="{DynamicResource ブラシ_イヤリング}">
<Path.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="37.277" />
<TranslateTransform />
</TransformGroup>
</Path.RenderTransform>
</Path>
</Grid>
<Grid x:Name="輪郭">
<Path x:Name="輪郭_1"
Canvas.Top="0"
Data="M151.66687,0.50000376 C137.97594,7.3185855 124.03686,18.295386 109.96162,32.138489 L46.666957,34.750002 0.49999214,143.50021 4.8336667,233.16664 C10.601686,251.37862 16.071287,268.16538 21.166998,283.16651 27.152477,302.23111 34.540721,321.03943 43.834027,339.49969 49.363058,350.19751 55.344446,360.33189 61.834343,369.83294 67.533343,378.30754 74.877876,384.85005 83.834644,389.49955 L99.535248,398.2033 C127.15091,411.08885 149.68836,421.57514 170.8339,427.66667 180.50744,430.60296 189.4838,432.7499 197.66757,433.99944 209.42093,436.32451 219.98998,434.82064 227.83375,427.99974 233.91347,423.36127 239.66793,418.63265 245.16734,413.83334 L271.00072,388.16667 C289.66741,369.16667 293.36916,363.31079 305.33377,347.16667 321.66698,326.16667 322.16755,308.5002 323.16712,293.66667 323.11035,279.83206 325.11004,265.49865 324.83377,251.66667 325.39707,216.51978 323.91281,202.12148 321.47072,190.75001 L309.47073,144.25 286.58376,59.250007 C283.4806,46.96565 278.79181,37.084556 271.83377,29.500006 259.03649,18.822895 241.917,9.2500704 219.08381,4.2500037"
Margin="327.75,182.5,0,0"
Stretch="Uniform"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Height="435.52"
Width="325.453"
StrokeThickness="2"
Fill="{DynamicResource ブラシ_肌}"
Stroke="{DynamicResource ブラシ_肌_輪郭}" />
<Path x:Name="輪郭_影"
Data="M151.85945,0 C174.01421,-1.244573 195.43902,-0.23183075 215.81405,4.0272283 238.84641,9.0541036 258.99219,18.40103 271.90109,29.135389 278.9198,36.760609 283.6495,46.694683 286.77972,59.04491 L309.86633,144.50067 323.17557,193.55757 C295.1467,127.48889 278.8709,6.1961494 181.09428,9.7278337 145.39459,9.7278347 115.82236,43.371544 86.06269,134.20905 64.716163,199.60208 51.275222,265.18334 43.497336,337.20666 34.161452,318.69402 27.550022,302.01895 21.537119,282.90023 16.418065,267.85653 11.008644,251.44566 5.2141992,233.18199 L0,143.40605 46.378482,34.347206 109.96313,31.728279 C124.10285,17.845888 138.1058,6.8379335 151.85945,0 z"
Fill="{DynamicResource ブラシ_肌_影}"
HorizontalAlignment="Left"
Height="337.703"
Margin="329.084,182.004,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="320.415"
StrokeThickness="0" />
</Grid>
<Grid x:Name="左眼">
<Path Data="M433.33333,387.16667 C437.16643,393.22982 439.46735,400.8179 440.16701,409.99966 440.96659,417.30234 439.94089,423.30151 438.00046,430.66617 433.00062,437.83292 420.0973,441.48463 410.33549,443.16631 399.89625,445.00497 389.90939,445.40923 380.33687,444.49966 372.6711,443.00004 365.17157,435.16656 360.33851,427.833 L351.67276,413.83299 C354.40025,405.18361 359.57472,398.20683 367.33808,392.99966 379.01655,386.19356 390.00334,382.66526 397.83618,381.99893 397.83618,381.99893 410.33529,381.33265 410.83526,381.49931 418.50154,381.66524 427.50097,385.16532 433.33333,387.16667 z"
HorizontalAlignment="Left"
Height="63.493"
Margin="351.667,381.474,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="88.773"
Fill="{DynamicResource ブラシ_ハイライト}" />
<Path Data="M423.26606,382.46189 C426.69842,384.69557 430.13223,395.86011 432.64116,404.6609 434.90151,413.49843 437.65774,429.0928 436.33752,433.55887 435.44457,437.23481 423.26539,440.65219 416.6317,442.36181 L407.1565,444.46149 C400.57806,446.08197 393.29191,446.56282 390.38699,441.96583 384.9331,433.03319 383.25582,426.04901 380.43888,417.04607 379.00163,412.46154 377.2695,407.69006 376.03741,401.51157 373.92446,391.27293 380.41655,385.31534 386.67515,382.47866 393.81966,379.44184 396.46052,379.70344 403.98698,378.91575 412.70182,378.78439 416.39909,380.22968 423.26606,382.46189 z"
Fill="{DynamicResource ブラシ_虹彩}"
HorizontalAlignment="Left"
Height="65.975"
Margin="375.781,378.992,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="60.794"
Stroke="{DynamicResource ブラシ_虹彩_輪郭}"
StrokeThickness="3" />
<Ellipse Fill="{DynamicResource ブラシ_ハイライト}"
HorizontalAlignment="Left"
Height="42.022"
Margin="391.743,395.847,0,0"
VerticalAlignment="Top"
Width="35.718"
RenderTransformOrigin="0.5,0.5">
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="-6.5" />
<TranslateTransform />
</TransformGroup>
</Ellipse.RenderTransform>
</Ellipse>
<Ellipse Fill="{DynamicResource ブラシ_瞳孔}"
HorizontalAlignment="Left"
Height="40.626"
Margin="392.183,391.713,0,0"
VerticalAlignment="Top"
Width="32.776"
RenderTransformOrigin="0.5,0.5">
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="-6.5" />
<TranslateTransform />
</TransformGroup>
</Ellipse.RenderTransform>
</Ellipse>
<Path Data="M359.28741,425.8327 C368.93812,417.51877 377.16684,411.83334 394.33334,406.00002 408.3988,402.16873 423.17918,398.85872 437.9996,397.79158 435.79129,391.66662 434.87464,386.83332 430.16634,385.83347 418.11302,381.22276 406.6131,379.61147 395.66667,381.00014 L367.33361,393.16678 C361.23152,396.17015 356.04726,401.04076 352.78749,410.83309 352.90223,416.14387 354.65977,422.32955 359.28741,425.8327 z"
Fill="{DynamicResource ブラシ_瞳_影}"
HorizontalAlignment="Left"
Height="45.315"
Margin="352.787,380.518,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="85.213" />
<Path Data="M439.65381,389.8162 C431.0957,385.72816 421.68694,380.47859 411.5,379.25 404.35251,378.62935 397.51975,379.08963 391,380.625 380.83171,382.87461 371.08409,386.04839 362.5,392.125 354.35364,396.94228 347.8842,410.33438 348.75,412.75 348.25551,415.49464 360.72053,428.92434 367.75,436.75 L358,422.125 C356.06609,418.6523 355.30921,415.15424 356,411.625 358.83076,405.63517 361.99344,401.16443 365.64462,398.33473 370.42473,394.73074 378.04171,389.78195 389.5,385.125 396.84634,383.50952 404.17981,382.87477 411.5,383.25 418.48502,383.76084 428.81831,386.8578 439.65381,389.8162 z"
HorizontalAlignment="Left"
Height="58.772"
Margin="348.672,378.978,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="91.995"
Fill="{DynamicResource ブラシ_瞼}" />
<Ellipse HorizontalAlignment="Left"
Height="18.409"
Margin="409.493,391.394,0,0"
VerticalAlignment="Top"
Width="23.089"
Fill="{DynamicResource ブラシ_ハイライト}"
RenderTransformOrigin="0.5,0.5">
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="-13.273" />
<TranslateTransform />
</TransformGroup>
</Ellipse.RenderTransform>
</Ellipse>
<Ellipse Fill="{DynamicResource ブラシ_ハイライト}"
HorizontalAlignment="Left"
Height="10.334"
Margin="386,433.5,0,0"
VerticalAlignment="Top"
Width="9.667" />
</Grid>
<Grid x:Name="右眼">
<Path Data="M549.5,377.25 C551.57725,389.90895 556.5,412.12481 559.875,413.7494 568.5,418.12473 585.30738,417.60823 600.5,414.99977 609.5,411.62481 618.5,406.49983 624.5,399.5 627,392.37487 629.25499,385.91648 630.25,379.25 631.39146,372.8014 630.91674,367.30574 628,363.25 621.4886,357.27654 614.27047,353.35086 606.25,351.75 598.24268,350.26205 589.78658,350.28128 580.75,352.25 568.16894,355.65268 557.96255,364.46507&#xa;549.5,377.25 z"
Fill="{DynamicResource ブラシ_ハイライト}"
HorizontalAlignment="Right"
Height="66.305"
Margin="0,350.696,353.178,0"
Stretch="Fill"
StrokeThickness="0"
VerticalAlignment="Top"
Width="81.322" />
<Path Data="M593.70524,349.34149 C599.44593,352.05558 601.77386,357.43504 604.55016,363.20407 606.02506,366.82047 607.08879,370.72388 607.83333,374.99967 609.29498,382.89797 610.75551,393.95591 610.36303,401.60436 610.25191,403.76973 609.78015,405.04293 608.97442,406.75622 607.09657,409.38102 603.50032,410.58323 599.917,411.74964 595.50036,413.16665 582.65667,414.08518 574.00046,413.74963 570.72301,413.54358 567.9874,412.26258 565.83371,409.83297 562.50052,405.99988 560.95973,388.64119&#xa;559.08376,377.16643 558.54729,371.64016 559.35,364.55138 562.47233,360.70728 567.25922,356.317 572.67769,353.12757 578.8694,351.40833 582.84415,349.78094 589.58128,348.96146 593.70524,349.34149 z"
HorizontalAlignment="Right"
Height="67.755"
Margin="0,349.328,372.604,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="52.465"
StrokeThickness="3"
Fill="{DynamicResource ブラシ_虹彩}"
Stroke="{DynamicResource ブラシ_虹彩_輪郭}" />
<Ellipse Fill="{DynamicResource ブラシ_ハイライト}"
HorizontalAlignment="Right"
Height="41.979"
Margin="0,366.282,381.649,0"
StrokeThickness="0"
VerticalAlignment="Top"
Width="32.153"
RenderTransformOrigin="0.5,0.5">
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="-3.1" />
<TranslateTransform />
</TransformGroup>
</Ellipse.RenderTransform>
</Ellipse>
<Ellipse Fill="{DynamicResource ブラシ_瞳孔}"
HorizontalAlignment="Right"
Height="40.761"
Margin="0,363.73,383.075,0"
StrokeThickness="0"
VerticalAlignment="Top"
Width="30.095"
RenderTransformOrigin="0.5,0.5">
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="-3.1" />
<TranslateTransform />
</TransformGroup>
</Ellipse.RenderTransform>
</Ellipse>
<Path Data="M550.30144,375.45161 L552.38135,385.75948 C564.74896,379.21524 577.6519,372.75445 590.3286,372.00035 602.78174,372.46434 615.5076,375.00174 628.49146,379.50034 L631.18726,367.99394 603.66083,350.33367 579.33015,351.834 C568.98949,358.32012 559.51181,365.93172 550.30144,375.45161 z"
Fill="{DynamicResource ブラシ_瞳_影}"
HorizontalAlignment="Right"
Height="38.448"
Margin="0,349.333,350.833,0"
Stretch="Fill"
StrokeThickness="0"
VerticalAlignment="Top"
Width="83.854" />
<Path Data="M626.50062,391.00007 L633.20233,368.98272 C633.6094,366.91194 632.16921,365.5772 630.95268,364.06608 626.83395,359.25034 620.50059,354.50038 615.29076,352.34084 606.27795,348.92885 596.33383,348.50033 585.25045,349.66709 577.91709,350.66698 570.50759,354.18993 563.75031,359.12534 557.063,364.29129 553.6052,368.54378 549.08395,375.9169 555.03451,369.5558 558.87779,366.36453 564.50031,362.12534 571.60134,357.04264 577.19213,353.87217 584.91712,352.00058 591.66714,350.9172 599.22634,351.70235&#xa;605.50031,353.00034 613.8339,354.75038 625.75031,363.58357 627.75031,367.6252 629.16697,370.66685 627.77407,381.53737 626.50062,391.00007 z"
HorizontalAlignment="Right"
Height="42.918"
Margin="0,349.082,349.728,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="85.189"
Fill="{DynamicResource ブラシ_瞼}"
Stroke="{DynamicResource ブラシ_瞼}" />
<Ellipse Fill="{DynamicResource ブラシ_ハイライト}"
HorizontalAlignment="Right"
Height="17.526"
Margin="0,362.233,372.36,0"
StrokeThickness="0"
VerticalAlignment="Top"
Width="22.398"
RenderTransformOrigin="0.5,0.5">
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="-16.983" />
<TranslateTransform />
</TransformGroup>
</Ellipse.RenderTransform>
</Ellipse>
<Ellipse Fill="{DynamicResource ブラシ_ハイライト}"
HorizontalAlignment="Right"
Height="9.656"
Margin="0,405.833,409.449,0"
StrokeThickness="0"
VerticalAlignment="Top"
Width="10.384" />
</Grid>
<Grid x:Name="口"
HorizontalAlignment="Left"
Height="100"
VerticalAlignment="Top"
Width="100">
<Path Data="M505.75,549.75 C504.49686,545.25936 513.38455,540.96783 522.81955,539.42572 535.96039,537.18336 544.35665,537.17634 545,541.5 544.86993,548.31313 541.1974,552.67355 531.5,554.75 522.55251,556.66587 508.65526,555.60531 505.75,549.75 z"
HorizontalAlignment="Right"
Height="17.666"
Margin="0,0,-445.002,-455.64"
Stretch="Fill"
VerticalAlignment="Bottom"
Width="39.369"
Fill="{DynamicResource ブラシ_口}"
StrokeThickness="1.5"
Stroke="{DynamicResource ブラシ_口_輪郭}" />
</Grid>
<Grid x:Name="鼻"
HorizontalAlignment="Left"
Height="100"
VerticalAlignment="Top"
Width="100">
<Path Data="M523.6954,492.71569 C525.17975,491.86188 526.0048,486.68552 525.51011,485.26355 524.79523,483.84144 523.28073,483.21525 521.60585,483.61415 521.44104,484.69465 520.2307,488.82931 520.34069,491.74852 520.93224,493.00348 522.6385,493.18842 523.6954,492.71569 z"
HorizontalAlignment="Right"
Height="10.392"
Margin="0,0,-426.914,-393.7"
Stretch="Fill"
VerticalAlignment="Bottom"
Width="6.047"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M521.50293,481.37105 C522.02011,483.88495 521.75286,484.93357 521.19049,487.12107"
HorizontalAlignment="Right"
Height="6.75"
Margin="0,0,-422.78,-388.122"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
VerticalAlignment="Bottom"
Width="1.589" />
</Grid>
<Grid x:Name="髪">
<Path x:Name="髪_メイン"
Data="M501.33333,176.66667 C499.40701,173.00049 497.25009,170.74997 491.16701,169.83301 485.39056,169.96018 480.20391,171.6497 475.83287,175.49973 468.51402,182.10282 462.66003,189.39319 457.8329,197.16533 443.508,218.35042 429.94316,243.81371 416.83279,273.16033 405.92796,300.06145 397.08752,327.91057 389.83295,356.48796 381.61269,390.49258 375.45665,421.96502 371.16655,451.14854 368.63645,465.77044 366.57034,480.68689 364.83283,495.81193 361.16695,476.66607 359.66441,458.59351&#xd;&#xa;360.16647,441.48243 360.93835,410.54397 362.73796,381.58816 365.49951,354.48806 367.9919,332.03098 370.65471,312.41219 373.49956,295.82519 L380.83293,251.16141 C373.08024,283.13051 365.9711,314.97195 360.49948,346.48858 356.95976,363.63467 353.87764,378.29081 351.99916,391.98565 347.79956,417.24687 345.2558,440.14416 343.16603,460.14789 341.45915,482.591 341.2277,505.034 342.83235,527.47687 343.92845,541.71009 345.57983,555.39119 347.8327,568.47422 350.5097,587.01282 355.90068,602.11001 368.49932,619.63749 337.49913,592.8056 321.1657,563.47418 312.49915,538.14288 299.29447,504.47593 290.90368,468.00252&#xd;&#xa;287.16565,428.81661 L285.49864,407.98462 C285.72921,413.19221 285.68053,437.08774 285.30474,461.81159 285.19892,468.77332 285.06717,475.80072 284.90842,482.49508 284.7111,490.81587 284.47206,498.62211 284.18925,505.14814 283.63334,517.97609 282.90832,525.85749 281.9986,522.9771 278.63778,545.97476 280.86735,573.8003 288.99865,595.47239 280.49666,581.14435 272.09628,565.81448 263.83205,549.14207 252.23924,522.9479 247.94224,491.69245 245.49832,459.98118 243.75255,435.23468 243.26638,411.41305&#xd;&#xa;243.99831,388.48582 242.79441,330.86268 246.74316,275.01529 255.9984,220.99669 264.28026,186.93339 277.1142,158.10251 294.49871,134.5023 314.43557,110.64882 336.73826,89.94251 361.49924,72.506327 394.65527,53.314408 429.40021,43.618364 466.00006,45.008109 496.33688,44.503636 527.30789,48.942162 559.0008,59.007202 589.9042,71.724745 613.52964,87.72614 631.00136,106.50412 659.84924,140.17498 680.17318,177.31201 693.00183,217.49692 706.43295,257.14258&#xd;&#xa;716.1247,295.42165 722.50206,332.48946 733.80317,378.93477 739.57553,424.61312 739.50221,469.48057 741.01714,492.01435 740.7896,513.1301 739.00219,532.97645 735.31997,560.57999 729.41398,581.90276 722.00206,598.97217 725.58817,578.34331 727.60783,557.18718 726.00147,533.97638 726.08809,516.94101 724.47923,500.36305 722.50206,484.97956 L696.00129,523.9773 C704.10335,487.49539 704.59558,450.72875 693.0429,412.94075 691.13826,400.50949 685.29529,387.51081 679.02833,375.30284 668.33058,345.32857 620.94486,270.8719 614.25813,248.79103 612.38495,242.52236 611.01128,236.37906 608.88834,230.73726 603.92528,216.95283 600.32509,206.74727 593.02876,195.1312 583.55614,182.97664 573.25055,170.99995 556.50045,166.50024 544.27789,164.57712 532.27087,165.97005 520.50023,170.99995 517.9766,172.48792 515.65677,174.4349&#xd;&#xa;513.50019,176.74958"
Margin="243.671,44.869,242.496,340.333"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_髪_輪郭}"
StrokeThickness="2"
Fill="{DynamicResource ブラシ_髪}" />
<Path x:Name="髪_右影"
Data="M633.833,207.50033 C645.75263,242.0464 657.43135,276.81932 668.49969,312.16699 681.78076,356.16613 694.55647,400.66995 705.684,446.81972 707.66682,425.34418 707.81756,403.0043 705.4997,379.49976 702.01513,339.59627 696.4005,302.84854 689.16636,268.50013 698.25657,301.79793 705.86422,335.12384 710.83303,368.4998 716.8705,405.53235 721.50145,449.74609 723.23468,489.94706 L690.21942,553.37393 693.2008,486.24285 C702.08532,480.50113 689.40657,416.07176 689.40657,416.07176 691.42741,397.07745 685.11744,386.3776 680.29216,376.54867 678.21367,368.79783 679.67374,372.68225 677.57021,365.22674 671.65997,344.27913 667.10902,320.30364 661.16655,299.83348 z"
HorizontalAlignment="Right"
Margin="0,207.5,259.75,406.644"
Stretch="Fill"
Width="90.417"
Fill="{DynamicResource ブラシ_髪_影}" />
<Path x:Name="髪_右ライン"
Data="M642.5,154.5 C660.95758,186.22385 676.27599,222.84175 688.5,264.5 699.05005,302.25189 702.97286,333.48462 706,368 709.32172,397.33129 709.33546,426.66473 706.5,456 706.5,456 702,507.5 702,507.5"
HorizontalAlignment="Right"
Margin="0,154.5,275.469,453.5"
Stretch="Fill"
Width="66.031"
Stroke="{DynamicResource ブラシ_髪_輪郭}" />
<Path x:Name="髪_左影"
Data="M14.799812,131.16701 L33.666992,357.25 27.416985,358.25 25.666527,355.33334 C21.83326,374.33334 22.833244,397.5 30.662979,425.74997 24.014442,408.28854 18.58947,390.2854 14.970276,371.48282 4.9911346,331.89441 0.12762451,289.22906 0,243.71524 1.1318207,205.7314 6.1143494,168.22139 14.799812,131.16701 z M148.667,0 C139.82267,26.956161 131.98963,53.594177 125.292,79.875 122.417,89.75 109.167,150.25 102.542,184 105.97895,151.45261 109.90049,122.9024 114.167,106 124.82911,66.899673 136.44996,32.10965 148.667,0 z"
HorizontalAlignment="Left"
Margin="256.833,166.5,0,368.75"
Stretch="Fill"
Width="148.667"
Fill="{DynamicResource ブラシ_髪_影}" />
<Path x:Name="髪_左ライン"
Data="M362.5,112.75 C335.69354,128.44487 318.94285,151.05635 305.25,180.25 290.0482,210.01055 280.01464,245.743 273.5,286.5 267.54957,322.66673 265.52484,358.1709 267.5,393 267.74229,443.83163 278.28209,491.16655 299,535 288.76642,484.55546 284.67048,451.97447 286.37174,436.26617"
HorizontalAlignment="Left"
Margin="266.767,112.75,0,426"
Stretch="Fill"
Width="95.733"
Fill="{DynamicResource ブラシ_髪}">
<Path.Stroke>
<LinearGradientBrush EndPoint="0.5,1"
StartPoint="0.5,0">
<GradientStop Color="{DynamicResource 色_髪_輪郭}"
Offset="0.7" />
<GradientStop Offset="1"
Color="#00000000" />
</LinearGradientBrush>
</Path.Stroke>
</Path>
<Path x:Name="髪_左ライン影"
Data="M293.5,480.25 C290.56092,467.02821 288.61231,454.17137 287.90318,441.77122 286.02858,430.84979 285.40783,371.22465 287.75,352 282.06834,383.55149 279.32092,416.45668 281.75,451.75 283.10525,472.09255 289.81543,502.89212 299.5,539.5 L298,507 z"
HorizontalAlignment="Left"
Margin="280.814,352,0,420.5"
Stretch="Fill"
Width="19.686"
Fill="{DynamicResource ブラシ_髪_影}" />
<Path Data="M367.03534,145.51695 C352.65291,188.26427 353.93103,220.94203 375.12703,233.24288 386.72256,240.84373 460.4041,249.99799 505.01286,250.85263 L500.53564,262.5139 C426.67565,261.39092 364.33527,255.79149 346,238.833 L338.87187,250.43082 C343.46866,204.94959 350.15739,179.039 367.03534,145.51695 z"
Height="118.01"
Margin="251.265,163.032,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Fill="{DynamicResource ブラシ_髪_光}"
HorizontalAlignment="Left"
Width="167.16" />
<Path Data="M700.96699,225.26342 C730.23574,215.63456 752.0297,191.35981 760.98309,153.87923 752.09868,136.1107 737.29472,111.68563 723.70318,96.036306 751.70318,143.78631 743.8707,199.8863 696.6207,210.8863 698.23822,215.59771 700.06405,220.62976 700.96699,225.26342 z"
Fill="{DynamicResource ブラシ_髪_光}"
HorizontalAlignment="Right"
Height="129.227"
Margin="0,116.39,310.278,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="64.362" />
</Grid>
<Grid x:Name="左眼plus">
<Path Data="M416.79662,360.94823 C421.86874,359.85176 440.19871,360.17574 443.29412,361.3388 449.06616,362.59681 456.9924,372.99376 456.09848,375.89595 455.81405,377.3214 445.7733,377.27279 441.70819,376.01352 434.42348,369.28189 427.60333,364.40755 416.79662,360.94823 z"
HorizontalAlignment="Left"
Height="17.672"
Margin="416.798,360.332,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="40.356"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M0.49999999,3.2519753 C0.49999999,3.2519753 11.79201,1.0438327 14.833994,0.91847993 17.83429,0.48046553 29.16701,0.25211127 36.667002,0.91847993 M41.16701,17.273992 C33.042019,10.10701 24.10451,3.5439855 13.66701,0.93999431"
HorizontalAlignment="Left"
Height="17.774"
Margin="401.333,359.581,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="41.667"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
Opacity="0.6" />
<Path Data="M426,333.5 C436.13892,336.66729 463.75,345.87527 463.375,348.5 462.24979,350.00034 450.65959,348.38175 442.25,346.875 426.75017,345.25051 397.25006,334.75011 397.375,332 z"
HorizontalAlignment="Left"
Height="17.097"
Margin="397.375,332.125,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="66.004"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M324.75,349.5 C338.85792,341.92188 355.437,335.93994 368.3914,334.12121 387.04423,331.94883 405.72624,330.93928 421.75,332 427.38705,332.28163 432.23598,333.83971 436.25,336.75 431.36014,335.15384 426.437,334.22928 421.99717,334.12115 407.13972,333.46333 388.85367,333.14448 368.64367,335.18176 358.687,336.06511 338.87908,342.81774 324.75,349.5 z"
HorizontalAlignment="Left"
Height="17.9"
Margin="322.688,331.1,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="111.5"
Fill="{DynamicResource ブラシ_肌_輪郭}" />
</Grid>
<Grid x:Name="右眼plus">
<Path Data="M559.5,339.33333 C552.5841,341.93136 546.10282,344.96445 540.66486,349.24771 535.82171,354.27494 530.88507,363.15155 531.16714,366.50032 531.47334,368.42949 532.56091,369.24077 534.5001,368.83367 536.97973,367.80313 538.97607,366.3078 540.86612,364.60238 543.36137,361.82161 547.48844,356.02852 550.24341,350.61794 z"
HorizontalAlignment="Right"
Height="30.606"
Margin="0,339.333,423.5,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="29.345"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M37.333036,0.50000002 C29.512816,0.86660807 22.593389,2.2440019 16.726453,4.8024048 11.078602,7.2038051 5.689675,9.7230499 0.5,12.332981 M6.2520423,18.099801 C9.3019207,13.209928 13.044506,8.6646709 17.41903,4.4337984"
HorizontalAlignment="Right"
Height="18.599"
Margin="0,334.167,402.167,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="37.833"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
Opacity="0.6" />
<Path Data="M519.16635,328.0004 C517.99888,326.16637 528.43658,317.08936 533.74933,312.24757 L565.66678,295.16307 C557.97364,300.98192 551.27403,307.57816 544.99961,315.24656 539.47847,322.04386 532.91579,338.0805 530.16592,337.66348 528.33237,338.16361 518.66598,330.08331 519.16635,328.0004 z"
HorizontalAlignment="Right"
Height="42.522"
Margin="0,294.417,418.333,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="46.59"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M608.05486,282.02202 C596.60932,284.11531 585.31141,287.08215 573.75,290.75 562,295 549.96393,301.53284 538.9375,307.125 535.33474,309.38549 531.74419,311.93258 528.33366,315.01564 525.38506,317.68111 522.57102,320.74719 520,324.375 526.44168,318.55721 534.375,312.125 539.6875,308.9375 551.3125,302.0625 564.24236,294.95952 573.99236,291.39702 585.0165,287.93541 596.40861,284.84911 608.05486,282.02202 z"
HorizontalAlignment="Right"
Height="42.353"
Margin="0,281.772,375.32,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="88.055"
Fill="{DynamicResource ブラシ_肌_輪郭}" />
</Grid>
<Grid x:Name="メガネ" Visibility="Visible">
<Path Data="M470.66667,442 C489.99956,414.99987 516.99964,416.33292 536.6663,423.99983"
Height="30.795"
Margin="466.667,415.205,443.336,0"
StrokeStartLineCap="Round"
Stretch="Fill"
StrokeEndLineCap="Round"
Stroke="{DynamicResource ブラシ_メガネ_フレーム}"
StrokeThickness="8"
VerticalAlignment="Top" />
<Path Data="M319.45526,442.15326 C308.78701,444.48658 309.1208,458.15328 322.45549,456.15327"
HorizontalAlignment="Left"
Height="22.199"
Margin="338.246,434.487,0,0"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_メガネ_フレーム}"
StrokeThickness="8"
VerticalAlignment="Top"
Width="18.544"
Fill="{DynamicResource ブラシ_メガネ_フレーム}" />
<Path Data="M457.63243,407.7572 C473.56779,424.49141 475.58467,441.70037 460.46968,458.64415 454.9635,464.81653 447.12214,468.48669 437.94534,471.65674 423.76334,476.49504 409.58134,480.83282 393.56402,480.66614 375.36681,480.8624 362.49798,473.45739 354.35485,459.31087 349.82769,449.95802 349.20665,439.22468 352.01892,427.27797"
HorizontalAlignment="Left"
Margin="348.327,403.257,0,477.828"
Stretch="Fill"
Width="126.438"
Stroke="{DynamicResource ブラシ_メガネ_フレーム}"
StrokeThickness="8"
StrokeStartLineCap="Round"
StrokeEndLineCap="Round"
Fill="{DynamicResource ブラシ_メガネ_レンズ}" />
<Path Data="M643.75,374.25 C655.5872,383.79968 659.50423,396.33091 655.75,411.75 651.50031,427.25054 640.75028,435.00062 625.25,442 575.75011,458.75086 552.25024,445.50025 543.99993,436.25044 536.00019,427.25 534.70026,409.29596 538.00048,397"
HorizontalAlignment="Right"
Height="83.771"
Margin="0,370.25,322.879,0"
StrokeStartLineCap="Round"
Stretch="Fill"
StrokeEndLineCap="Round"
Stroke="{DynamicResource ブラシ_メガネ_フレーム}"
StrokeThickness="8"
VerticalAlignment="Top"
Width="128.813"
Fill="{DynamicResource ブラシ_メガネ_レンズ}" />
<Path Data="M551.21797,409.6209 C566.12588,405.75086 563.12259,422.43455 554.2182,423.62091"
HorizontalAlignment="Right"
Height="22.581"
Margin="0,379.351,316.297,0"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_メガネ_フレーム}"
StrokeThickness="8"
VerticalAlignment="Top"
Width="18.429"
Fill="{DynamicResource ブラシ_メガネ_フレーム}" />
</Grid>
<Grid x:Name="腕"
HorizontalAlignment="Left"
Height="450.753"
Margin="111.434,0,0,6"
VerticalAlignment="Bottom"
Width="281.175">
<Path Data="M345.66589,763.32958 L351.15058,735.49902 C361.25564,702.29947 397.97808,646.74806 390.65058,643.99902 376.4128,640.57484 364.39874,643.66719 352,655 345.91499,661.69441 337.6944,678.13539 333.21071,680.37736 330.08321,677.97097 325.73727,675.39523 323.5,670.5 L286.12931,564.04495 C279.94869,545.75518 268.73736,512.63691 262.79628,510.98542 257.50487,509.44386 251.50343,510.98542 249.17844,515.63539 247.18558,520.28537 246.83982,529.5 249,537 L262.71321,605.64561 C258.66548,608.62049 252.49983,611.12594 247.39317,611.4996 233.74169,585.89371 218.83682,561.781 202,538.5 189.71242,518.7695 171.62321,502.5161 161,507 155.14976,512.81204 156.62791,522.58384 163,535 157.19023,527.87596 153.13064,523.46604 146.8785,523.60678 140.61957,525.04391 139.27878,533.64878 143,544 154.43085,574.98325 167.48632,607.26135 181.75346,638.27847 181.72174,642.24443 178.87303,646.15147&#xd;&#xa;174.94455,648.65787 170.23736,644.15862 122.86675,595.11544 117.15168,597.17602 111.86314,599.2809 111.34777,603.44645 113.99637,613.36789 115.82296,618.51608 142.9258,655.98898 159,676 168.3017,689.01301 200.04188,772.53014 199.93832,774.53935 201.43832,776.03935 226.59277,791.47854 226.59277,791.47854 L261.21863,787.99103 282.39272,783.00892 299.83021,780.26878 z"
Margin="0,0,0,163.5"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
Fill="{DynamicResource ブラシ_肌}"
StrokeThickness="2" />
<Path Data="M161.19693,667.18809 C167.28866,667.59892 173.58397,663.15294 174.33301,652.33365 L184.83367,640.6675 C202.70354,623.45212 223.75242,613.71312 245.9932,612.25238 L234.22606,591.08395 C236.32131,614.45042 216.12363,621.11294 202.60611,597.99349 212.0735,627.20168 194.36785,637.38271 173.90399,617.82294 L182.07905,637.01063 C183.06696,641.86495 175.60348,649.33409 173.29838,648.26449 172.75994,659.26726 166.93252,664.3541 161.19693,667.18809 z"
HorizontalAlignment="Left"
Height="77.108"
Margin="49.733,85.838,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="85.835"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M379.61977,671.17386 C370.00621,689.3139 360.20407,708.87709 351.86527,728.59687 347.66375,744.98493 342.75207,755.70079 336.167,763.83333 L269.83277,782.50038 209.11003,788.74841 C187.82743,745.09204 173.50443,700.29293 160.80955,677.47255 L148.57505,660.67832 C155.37852,660.80238 162.81103,665.34474 165.49967,669.16669 175.8793,685.43659 190.16302,718.82546 204.16646,743.83357 211.15944,750.75864 219.38987,755.52214 228.8332,758.16695 236.61562,758.9827 258.37575,753.02558 273.16668,748.83359 279.2638,747.32447 284.90597,742.85961 292.16674,741.83356 301.58357,741.04059 315.10819,745.2574 322.8335,743.83357 331.61983,740.70986 340.74688,732.35893 345.50024,725.83352 z"
Margin="37.143,155.425,11.984,166.25"
Stretch="Fill"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M261,710 C263.30433,697.32759 267.00026,674.16698 268.83333,673.83333 270.83376,673.16699 310.973,677.93866 331.68094,680.48135 L327.65377,684.45501 C301.929,686.64477 281.21794,694.51094 261,710 z"
HorizontalAlignment="Right"
Height="37.23"
Margin="0,168.523,59.942,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="71.667"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M333.58897,680.31628 L329.16632,684.83365 C304.65613,687.05495 282.16434,695.20706 262.16036,710.66926"
HorizontalAlignment="Right"
Height="30.334"
Margin="0,175.086,59.026,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="71.416"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
Opacity="0.25" />
<Path Data="M304.41667,656.16667 C305,656.75 324.83299,672.66635 324.83299,672.66635"
HorizontalAlignment="Right"
Height="17.5"
Margin="0,150.92,66.776,0"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_肌_輪郭}"
VerticalAlignment="Top"
Width="21.416"
Opacity="0.25" />
<Path Data="M307.09928,625.0797 L307.25606,657.36 322.27763,669.83147 z"
HorizontalAlignment="Right"
Height="46.175"
Margin="0,119.197,70.423,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="15.954"
Fill="{DynamicResource ブラシ_肌_影}"
UseLayoutRounding="False" />
<Path Data="M190,574 C190.16667,574.66667 209.33333,607.33333 209.33333,607.33333 L210.66702,613.00037 206.83335,608.50032 z"
HorizontalAlignment="Left"
Height="40"
Margin="78.566,68.753,0,0"
Stretch="Fill"
VerticalAlignment="Top"
Width="21.667"
Fill="{DynamicResource ブラシ_肌_輪郭}" />
<Path x:Name="袖"
Data="M189.6667,748.16667 L191,771 C192.53403,780.80951 198.00013,791.50046 198,799.5 L174.5,955 335.5,954.5 330.5,804 C334.00091,788.00047 347.33432,773.66717 350.5,761 L352.83401,733.83365 C349.00099,743.16726 344.82223,752.30248 339,759.5 329.66755,768.50052 307.96298,774.11512 284.66667,776 277.41574,775.61848 269.91878,777.16195 262.90356,780.40871 245.25485,783.32752 218.33342,787.33333 211,782 204.33339,777.33333 196.12511,762.10897 189.6667,748.16667 z"
Height="223.167"
Margin="62.066,0,38.776,0"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_セーター_輪郭}"
StrokeThickness="2"
VerticalAlignment="Bottom"
Fill="{DynamicResource ブラシ_セーター}" />
<Path Data="M226,905.5 C221.67035,892.49022 218.37139,879.66994 217.25,867.25 216.82615,854.69409 217.77876,843.32006 220.25,833.25 234.38346,835.11453 245.73907,835.724 255.25,835.5 271.3015,832.68847 284.84111,830.28494 297.50911,826.02385 267.45459,826.66462 241.9396,826.7298 222.50911,826.02385 217.24557,813.68895 213.12613,797.15563 211.84893,784.14715 206.04007,780.69168 197.71335,766.67239 192.13186,754.52852 L193.0315,772.29983 C194.99506,781.02078 197.90601,788.74754 199.82232,796.89905 L199.75,811 C203.94615,842.31078 213.4264,873.84112 226,905.5 z"
Height="152.917"
Margin="79.733,0,94.109,49.5"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Bottom"
Fill="{DynamicResource ブラシ_セーター_影}" />
<Path Data="M263.14675,605.88479 C266.73449,604.89315 270.81768,604.23431 275.44505,603.941 269.36573,601.96494 264.73109,598.13469 260.74865,593.16515"
HorizontalAlignment="Right"
Height="14.812"
Margin="0,85.838,114.953,0"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Top"
Width="16.656"
Fill="{DynamicResource ブラシ_肌_影}" />
<Path Data="M198.25,801.5 L201.25,814.75 C204.5,822.74999 210.44519,829.0645 216,832.75 222.59485,833.93191 228.79678,834.24189 234.75,834 243.59766,835.70718 251.20775,835.67749 258,834.5 L297,826"
Height="34.839"
Margin="86.816,0,94.609,119.661"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_セーター_輪郭}"
VerticalAlignment="Bottom"
Opacity="0.5" />
<Path Data="M317.66667,822.33333 C321.47937,820.83698 324.8674,818.35339 327.66632,814.50031 329.29657,811.70641 330.20987,809.04498 330.49923,806.5003"
HorizontalAlignment="Right"
Height="17.833"
Margin="0,0,61.109,132.667"
Stretch="Fill"
Stroke="{DynamicResource ブラシ_セーター_輪郭}"
VerticalAlignment="Bottom"
Width="14.833"
Opacity="0.5" />
<Path Data="M198.11047,953.38782 C199.93206,945.20949 204.18443,929.6163 203.25,926.25 196.02118,883.85746 194.58,850.05195 195.5,819.75 L176.61883,953.14148 z"
HorizontalAlignment="Left"
Height="135.625"
Margin="64.316,0,0,1.625"
Stretch="Fill"
StrokeThickness="2"
VerticalAlignment="Bottom"
Width="28.642"
Fill="{DynamicResource ブラシ_セーター_影}" />
</Grid>
</Grid>
</Viewbox>
</UserControl>
</Grid>
</Window>
"@
Add-Type -ReferencedAssemblies $assemblies -TypeDefinition $source -Language CSharp
[Program]::Run($xaml)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment