English 中文(简体)
WPF 图Brush Change from Codebehind?
原标题:WPF ImageBrush Transform from codebehind?
  • 时间:2010-12-22 07:17:38
  •  标签:
  • c#
  • wpf
  • xaml
  • 3d

In XAML 我有:

<ImageBrush x:Name="TE_Tex_001"
    ImageSource="d:exterior.bmp"
    ViewportUnits="Absolute"
    Transform="1,0,0,-1,0,1"
    TileMode="Tile" />

在密码后面,我想制造同样的图像Brush-,除变换财产外,我似乎一切好。 据 docs称,这是一种制度。 Windows.Media. Transform,并且可以是任何比额表的轮换或翻译。

但是,我看不出他们中将“1,00,-1,01,1”,作为论点、财产或任何东西。 我认为,它可能从1 0人移至1 01人,但是,翻译转变似乎不可能。

因此,什么类型的变革是“1,00,-1,01,1”,以及我如何把它列入法典?

感谢!

最佳回答

代码

TE_Tex_001.Transform = new MatrixTransform(1.0d, 0.0d, 0.0d, -1.0d, 0.0d, 1.0d);
问题回答

请参看,该网页,以了解这六个数字的含义。





相关问题
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. ...

热门标签