ContentControl未与TextBlock中的文本对齐

时间:2016-01-05 14:50:54

标签: c# wpf xaml blend

我有一个带有各种绑定的超链接,我已将其放入DataTemplate以确保代码不会重复。要使用它,我使用ContentTemplate指定ContentControl。但是,使用与TextBlock文本内联的ContentControl会导致链接偏移。我发现了以下测试用例:

server {
    listen 80 default_server;
    server_name default;
    root /home/forge/web-app/public;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    index index.html index.htm index.php;

    charset utf-8;

    location ~* \.html$ {
      expires -1;
    }


    location / {
        try_files $uri $uri/ /index.php?$query_string;

        #configure cache
        proxy_cache one; <----------------------------- Added HERE 
        proxy_cache_valid any 1m;
    }

    location ~* \.(css|js|gif|jpe?g|png)$ {
        expires 168h;
        add_header Pragma public;
        add_header Cache-Control "public, must-revalidate, proxy-revalidate";
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/default-error.log error;

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;

        #configure cache
        proxy_cache one;
        proxy_cache_valid any 1m;
    }

    location ~ /\.ht {
        deny all;
    }
}

enter image description here

我发现解决这个问题的唯一方法是在ContentControl上指定一个负余量,但显然这并不理想,因为它在字体大小改变时不起作用。

1 个答案:

答案 0 :(得分:0)

我认为不可能使ContentControl的行为与内联元素相同,并且让ContentControl保持与文本内联的唯一方法是修改填充/基线等不能对DPI变化做出反应,显然有点像黑客攻击。

我使用了Grx70的建议,而是将绑定移动到我根据需要在Hyperlink设置的样式:

<Style x:Key="CustomHyperlink" TargetType="{x:Type Hyperlink}" BasedOn="{StaticResource {x:Type Hyperlink}}">
        <Setter Property="NavigateUri" Value="{Binding TheUri}"/>
        <Setter Property="Command" Value="{Binding TheCommand}"/>
        <Setter Property="CommandParameter" Value="{Binding NavigateUri, RelativeSource={RelativeSource Self}}"/>
</Style>

<TextBlock TextWrapping="Wrap">
        ...please <Hyperlink Style="{StaticResource CaseHyperlink}">view in browser</Hyperlink> and...
</TextBlock>