我希望我不會愚蠢地問這個問題,但我正試圖在WPF中設計一個圖表查看器作爲框架中的一個新的總體;儘管我確實想出了一些解決我的問題的方法,但我最引以爲傲的方案並不適用於它應該在的地方。我想要做的是在ItemsControl上的一個節點上放置一個我計算出的與Dijkstra的alg +某些數學的位置。問題是,當我使用正常的X和Y綁定時,移動的是帶有邊框的TextBlock的左上角,但我想要管理的是他們的中心。因此,我的節點最終從我指定的點向下並向右,而不是以它爲中心。爲什麼MultiBinding TranslateTransform.X似乎不能在WPF中工作?
我最終使用NodeViewModel的X/Y屬性和網格的ActualWidth/Height解決了多重綁定問題。發生什麼事是所有我的節點被放置在(0,0)!我甚至調試了代碼並查看了轉換器,但返回值似乎沒問題。我甚至嘗試了一些隨機的東西,如綁定到其他屬性等。
我完全困惑。
所以一個問題是 - MultiBinding的工作方式是什麼?還是我犯了一個愚蠢的錯誤?我將發佈我的轉換器下面的XAML代碼。 XAML中的部分是一個工具提示和一個嵌入式ItemsControl,但是切除這些部分不會改變任何內容(除了提高代碼的清晰度外)。在轉換器中的鑄造是因爲直接拋出浮動對我來說不起作用(但這是無關緊要的 - 即使它不是很漂亮,它的工作方式也是如此)。
另一個問題是 - 我可以用任何簡單的方法做到嗎?就像直接操縱TextBlock的中心一樣?
XAML:
<Grid>
<ItemsControl ItemsSource="{Binding Source={StaticResource Nodes}, Path=Nodes}">
<ItemsControl.ItemTemplate>
<DataTemplate DataType="vievModels:NodeViewModel">
<Grid>
<Grid x:Name="nodeGrid">
<Grid.RenderTransform>
<TranslateTransform>
<TranslateTransform.X>
<MultiBinding Converter="{StaticResource PositionConverter}">
<Binding Path="Position.X"/>
<Binding ElementName="nodeGrid" Path="ActualWidth"/>
</MultiBinding>
</TranslateTransform.X>
<TranslateTransform.Y>
<MultiBinding Converter="{StaticResource PositionConverter}">
<Binding Path="Position.Y"/>
<Binding ElementName="nodeGrid" Path="ActualHeight"/>
</MultiBinding>
</TranslateTransform.Y>
</TranslateTransform>
</Grid.RenderTransform>
<Border BorderBrush="Black" BorderThickness="2" CornerRadius="7">
<Border.Background>
<SolidColorBrush Color="{Binding Color}" Opacity="0.5"/>
</Border.Background>
<TextBlock x:Name="Label" Margin="5,5,5,5" MaxWidth="160" TextAlignment="Center" TextWrapping="Wrap" FontFamily="Lucida Console" VerticalAlignment="Center" HorizontalAlignment="Center" Text="{Binding Path=Label}"/>
</Border>
...
</Grid>
...
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Canvas Background="Transparent"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
</Grid>
C#:
public class PositionConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
float point = float.Parse(values[0].ToString());
float size = float.Parse(values[1].ToString());
return point - size/2;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
乾杯, 邁克爾
正確的,爲什麼它不工作:d多麼愚蠢的錯誤;) – 2010-02-27 15:07:43
您可以編輯您的問題來解決標題,只需點擊「編輯」鏈接 – 2010-02-27 18:27:48
感謝,我會做到這一點,記得下一次:) – 2010-02-27 20:06:27