English 中文(简体)
页: 1
原标题:Silverlight Border FAIL !

Border FAIL !! I have a border in XAML code that is defined right after that main canvas:

<Canvas xmlns="http://schemas.microsoft.com/client/2007"
...      VerticalAlignment="Top" HorizontalAlignment="Center">
    <Border x:Name="JohnnyBorder" BorderThickness="1" Margin="0,0,0,0" BorderBrush="#FF677B8B" VerticalAlignment="Stretch"
            HorizontalAlignment="Center">

在《法典》中,我把边界推向越高:

JohnnyBorder = (Border)appCanvas.FindName("JohnnyBorder");
                JohnnyBorder.Height = App.Current.Host.Content.ActualHeight;
                JohnnyBorder.Width = App.Current.Host.Content.ActualWidth;

但它并不奏效。 JohnnyBoarder的底线比浏览器底部高出几个百分点。 为什么?

最佳回答

我认为,将<条码>Border>>around改为<条码>Canvas<>>>:

<Border>
    <Canvas>
        ...
    </Canvas>
</Border>

否则,<代码>Border将填充该网页,<编码>Canvas将填上<代码>Border。

问题回答

您的银灯的首页可能不会使银光达到100%的高度。 检查html或作为你的银灯的x,确保它达到100%的高度。

<form id="form1" runat="server" style="height:100%">
<div id="silverlightControlHost">
    <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签