Hi Yi-Lun,
The following Path draw in Blend works fine:
<UserControl
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="TestSilverlightApplication.UserControl1"
d:DesignWidth="640" d:DesignHeight="480">
<Grid x:Name="LayoutRoot" Background="White" >
<Path Height="91.835" HorizontalAlignment="Left" Margin="116.5,132.664993286133,0,0" VerticalAlignment="Top" Width="168" Fill="#FFFFFFFF" Stretch="Fill" Stroke="#FF000000" Data="M117,136 C283,119 284,184 284,184 L190,224.00024 z" d:LayoutOverrides="Height"/>
</Grid>
</UserControl>
But this one shows use a "Cannot convert...." error:
<UserControl
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="TestSilverlightApplication.UserControl1"
d:DesignWidth="640" d:DesignHeight="480">
<Grid x:Name="LayoutRoot" Background="White" >
<Path Height="91.835" HorizontalAlignment="Left" Margin="116.5,132.664993286133,0,0" VerticalAlignment="Top" Width="168" Fill="#FFFFFFFF" Stretch="Fill" Stroke="#FF000000" Data="M117,136 C283,119 284,184 284,184 L190,224.00024 z" d:LayoutOverrides="Height"/>
<Path Height="91.835" HorizontalAlignment="Left" Margin="116.5,132.664993286133,0,0" VerticalAlignment="Top" Width="168" Fill="#FFFFFFFF" Stretch="Fill" Stroke="#FF000000" Data="M117,136 C283,119 284,184 284,184 L190,224.00024 z" d:LayoutOverrides="Height"/>
</Grid>
</UserControl>